diff options
Diffstat (limited to 'index.tpl')
-rw-r--r-- | index.tpl | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,14 +1,20 @@ -# Title +# List of titles - {{ title }} - {{title}} - {{ title}} - {{title }} # Dot notation -{{ user.name }} +{{ home.title }} # For block {% for p in posts %} - {{ p.title }} + + ( + {% for t in p.tags %} + {{ t }}, + {% endfor %} + ) {% endfor %} |