jeffs-pelican-theme/templates/period_archives.html

13 lines
417 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - {{ period | reverse | join(' ') }} archives{% endblock %}
{% block content %}
<h2>Archives for {{ period | reverse | join(' ') }}</h2>
<ul>
{% for article in dates %}
<li>{{ article.locale_date }} - <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</ul>
{% endblock %}