The most basic syntax for Twig Tweak's view embed simply specifies the view and the machine name you wish to embed, as follows: {{ drupal_view('who_s_new', 'block_1') }} 2. Block - configuration entity This is what we configure on admin/structure/block page. It's important to know that eventually these entities are rendered using block plugins described above. The purpose of the configuration entities is to store plugin IDs and configuration. Additionally they reference theme and region where a block should be printed, but this data are not used when rendering through Twig Tweak. So having configured a block through administrative interface you can print it using the following code. {{ drupal_entity('block', 'block_id') }} Disabled blocks won't be printed unless you suppress access control as follows. {{ drupal_entity('block', 'block_id', check_access=false) }} STAMPA DI UN FORM DI CONTATTO {{ drupal_entity('webform', 'nome_macchina_del_form') }}