jeffs-pelican-theme/templates/archives.html

14 lines
416 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - Archives{% endblock %}
{% block content %}
<h2>Archives for {{ SITENAME }}</h2>
<ul>
{% for article in dates %}
<!--<dt>{{ article.locale_date }}</dt>-->
<li>{{ article.locale_date }} - <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</ul>
{% endblock %}