if condition in drupal 8
{% if form %}
{{ form }}
{% endif %}
for loop in drupal8
{% set users = [‘Paul’, ‘Guenther’, ‘Max’] %}
{% for user in users %}
{{ user }}
{% endfor %}
if condition in drupal 8
{% if form %}
{{ form }}
{% endif %}
for loop in drupal8
{% set users = [‘Paul’, ‘Guenther’, ‘Max’] %}
{% for user in users %}
{{ user }}
{% endfor %}