1
0
Bifurcation 0
bifurqué depuis boyska/sito-hackit-19
sito-hackit-19/themes/hackit0x16/templates/period_archives.html
2019-05-22 11:50:32 +02:00

13 lignes
335 o
HTML

{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
<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>
</section>
{% endblock %}