Files
pelican-themes/bootlex/templates/archives.html
2012-10-24 18:45:19 +02:00

16 lines
359 B
HTML

{% extends "base.html" %}
{% block title %}Archiv{%endblock%}
{% block menu_entry_archive %}
class="active"
{% endblock %}
{% block content %}
<h1>Archiv {{ pagename }}</h1>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}