fel_website/themes/cebong/templates/archives.html

15 lines
362 B
HTML
Raw Normal View History

2020-04-03 13:05:13 +00:00
{% extends "base.html" %}
{% block robots %}noindex,follow{% endblock %}
{% block content %}
<section id="content" class="body">
<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>
</section>
{% endblock %}