1
0
Tükrözés 0
tükrözve innen: boyska/sito-hackit-19
sito-hackit-19/themes/hackit0x16/templates/archives.html
2019-05-22 11:50:32 +02:00

13 sor
315 B
HTML

{% extends "base.html" %}
{% 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 %}