cloud.csclub.uwaterloo.ca/themes/csclub/templates/period_archives.html

12 lines
288 B
HTML
Raw Normal View History

2018-08-11 11:30:26 -04:00
{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ period | reverse | join(' ') }}</h1>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}