{% include 'header.html' ignore missing with context %}
{% include 'subheader.html' without context %}

<ul>
{% for href, caption in [('index.html', 'Index'), ('about.html', 'About')] %}
  <li><a href="{{ href }}">{{ caption }}</a></li>
{% endfor %}
</ul>

{% set navigation = [('index.html', 'Index'), ('about.html', 'About')] %}
{% set key, value = call_something() %}

{# A comment #}

Hello {{ user.name|capitalize }} ! ## Comment

Cool list filter {{ listx | join(', ') }}

{% if user.admin is true %}
  <span>You're an admin !</span>
{% else %}
  <span>You're a normal user.</span>
{% endif %}

{# A comment on multiple lines
   to hide a piece of code or whatever #}

{# note: commented-out template because we no longer use this
    {% for user in users %}
        ...
    {% endfor %}
#}

{% raw %}
  {% for item in seq %}
    <li>{{ item }}</li>
  {% endfor %}
{% endraw %}

{% raw %} One line {{ raw }} block {% endraw %}

{% include 'footer.html' %}
