{% extends "base.html" %} {% block title %}{% if tag %}Tag {{ tag }} - {% endif %}{% endblock %} {% block head %} {% endblock %} {% block content %}
{% for post in posts %}

{{ post.title or '(no title)' }}

on {{ strftime(post.creation, '%Y/%m/%d') }}{% for tag in post.tag %}, #{{ tag }}{% endfor %}

{{ post.excerpt }}

{% endfor %}

<< < / {{ max_page }} > >>

{% endblock %}