theme/templates/archives.html

Sun, 26 Jun 2016 01:31:22 +0200

author
David Douard <david.douard@logilab.fr>
date
Sun, 26 Jun 2016 01:31:22 +0200
changeset 60
3f87af862c60
parent 36
9507107a1133
permissions
-rw-r--r--

[hp34970a] #2: add a link to the first post

{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h1>

<dl>
{% for article in dates %}
    <dt>{{ article.locale_date }}</dt>
    <dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}

mercurial