blob: d1345622fec48afcd6c044f7f773c4b15739215f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "index.html" %}
{% import 'html_macros.html' as html_macros %}
{% block head %}
{{ super() }}
{% endblock head %}
{% block titlename %}{{'all articles'|capitalize}}{% endblock titlename %}
{% block content %}
{% block heading %}
<ul>
{% for article in articles|sort(reverse=True,attribute='date') %}
{% endfor %}
</ul>
<h1>Archives for {{ period | reverse | join(' ') }}</h1>
<ul>
{% for article in dates %}
<li>{{ article.locale_date }} <a class="{% if CAPITALIZE_HEADINGS %}capitalize{% endif %}" href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock heading %}
{% endblock content %}
|