{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %}

blog

{% for post in posts|sort(attribute="created_at", reverse=True) %}

{{ post.title }}

{{ post.description or "" }}

posted {{ format_ts(post.created_at) }}

{% endfor %} {% if posts|length == 0 %}

huh, I guess nothing has been posted yet.

{% endif %}
{% endblock %}