{% extends "base.html" %} {% block head_title %} {{ SITENAME | striptags }} :: Blog {% endblock head_title %} {% block head %} {{ super() }} {% if DESCRIPTION %} {% endif %} {% endblock head %} {% block main %}

Blog

{% if DESCRIPTION %}

{{ DESCRIPTION }}

{% endif %}
{% for article in dates %}
{{ article.title }}
{{ article.summary }}

{% if article.authors %} {% for author in article.authors %} {{ author }} {% if not loop.last %} , {% else %} :: {% endif %} {% endfor %} {% endif %} {{ article.locale_date }} {% if article.license %} :: {{ article.license[0] }} {% endif %}

{% endfor %}
{% endblock main %}