link to post revision history; and, compact Reddit share button
[Ultimately_Untrue_Thought.git] / theme / templates / archives.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ SITENAME }} - Archives{% endblock %}
4
5 {% block content %}
6   <h2>Archives</h2>
7
8   <dl>
9     {% for article in dates %}
10
11         {% if loop.first or loop.previtem.date.month != article.date.month %}
12           <h4><strong>{{ article.date.strftime('%B %Y') }}</strong></h4>
13         {% endif %}
14
15         <dd>{{ article.date.strftime('%d') }} &emsp; <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
16     {% endfor %}
17   </dl>
18 {% endblock %}