Module Description
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.
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.
Module Link
Project Usage
786
Security Covered
Covered By Security Advisory
Version Available
Production
Module Summary
Twig Blocks aims to solve the need for a simple and straightforward way to render blocks in Twig templates without enabling PHP execution.
Data Name
twig_blocks