aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs/templates/archives.html
blob: 1032c42552921ae1ec397bb5ca0d4c265a5c06aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block title %}{{ SITENAME }} <small>[archive]</small>{% endblock %}
{% block content %}
{% for year, date_year in dates|groupby( 'date.year' ) %}
<h2>{{ year }}</h2>
{% for month, articles in date_year|groupby( 'date.month' ) %}
<p><b>{{ articles[ 0 ].date.strftime( '%B' ) }}</b></p>
<ul>
{% for article in articles %}
	<li><a href="{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
{% endfor %}
{% endblock %}