1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
{% 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' %}
|