flex/templates/archives.html
Alexandre Vicenzi 2adc599df7 Fix template.
2015-07-22 23:02:51 -03:00

18 lines
387 B
HTML

{% extends "base.html" %}
{% block title %} – Archives{% endblock %}
{% block content %}
<article>
<header>
<h1>Archives</h1>
</header>
<div>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
</div>
</article>
{% endblock %}