mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
13 lines
305 B
HTML
13 lines
305 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Archives for {{ BLOGNAME }}</h1>
|
|
|
|
<dl>
|
|
{% for date, articles in dates %}
|
|
{% for article in articles %}
|
|
<dt>{{ date }}</dt>
|
|
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</dl>
|
|
{% endblock %}
|