Skip to content
Marie-Louise edited this page Aug 21, 2018 · 3 revisions

Twig Exercises

to add a function to the second block

<span>{{label|upper}}</span>

to remove the number 2 in the block

{{label|trim('2')}}

example: renders a list of numbers (1,2,3)

{% for i in range (low=1,high=3)%}
{{i}}
{% endfor %}

Drupal & Twig have different concepts regarding 'blocks'

Clone this wiki locally