The set
tag allows you to define a variable in the current context, whether it currently exists or not.
twig
{% set header = "Test Page" %}
{{ header }}
The set
tag allows you to define a variable in the current context, whether it currently exists or not.
{% set header = "Test Page" %}
{{ header }}