{{ var }}
{% if conditional %}
...
{% else %}
...
{% endif %}
{%
set var = value
%}
{# ... #}
{% for row in rows %}
{% for key, user in users %}
<li>{{ key }}: {{ user.username|e }}</li>
{% endfor %}
If your template has a title variable available, the following will dump its contents to your template:
{{ dump(title) }}
To dump all available variables and their contents in a template, add the following to your template (after enabling debugging):
{{ dump() }}
{{ dump(_context|keys) }}
{% for key, value in _context.view %}
<li>{{ key }}</li>
{% endfor %}