This module allows you to render Drupal blocks directly within your Twig templates using a simple function. You can pass the block's machine name and optionally specify its label and plugin configuration for full control.
Twig Blocks adds a Twig function to render blocks in Twig by passing in the block machine name.
Usage
To render a block, call the function in your Twig template.
The simplest way to render block plugin is as follows.
{{ render_block('block_id') }}
Optionally you can pass block label and plugin configuration in the second
parameter.
{{ render_block('block_id', {label: 'Example'|t, some_setting: 'example', setting_array: {value: value}}) }}
Objective
There is another module that provides similar functionality but it also has an option to turn on and allow PHP execution in the Twig templates which I didn't want to add to my project. This is just a straight-forward function to render a block.
Depends on
Dependencies of the latest stable release
No dependencies recorded for this project.
Required by
Tracked projects that depend on this one
No tracked projects depend on this one yet.
Activity
Releases
| Version | Type | Core | Notes | Release date | |
|---|---|---|---|---|---|
| 8.x-2.6 | Stable | 8–11 | Feb 18, 2026 |