aboutsummaryrefslogtreecommitdiff
path: root/index.tpl
blob: 940f61b28afbcd006a95a8b386a5ab129f0ff8ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# List of titles 
- {{ title }}
- {{title}}
- {{ title}}
- {{title }}

# Dot notation
{{ home.title }}

# For block
{% for p in posts %}
    - {{ p.title }}

    (
    {% for t in p.tags %}
        {{ t }},
    {% endfor %}
    )
{% endfor %}