twig_blocks
749 sites
Security covered
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.