diff options
Diffstat (limited to 'tuxlite_tbs/templates/archives.html')
-rw-r--r-- | tuxlite_tbs/templates/archives.html | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/tuxlite_tbs/templates/archives.html b/tuxlite_tbs/templates/archives.html index 2d02e12..1520943 100644 --- a/tuxlite_tbs/templates/archives.html +++ b/tuxlite_tbs/templates/archives.html @@ -1,15 +1,19 @@ {% 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' ) %} -<h3>{{ articles[ 0 ].date.strftime( '%B' ) }}</h3> -<ul> -{% for article in articles %} - <li><a href="{{ article.url }}">{{ article.title }}</li> -{% endfor %} -</ul> -{% endfor %} -{% endfor %} + +<h1>Archives</h1> + +<table class="table"> + <tbody> + {% for article in dates %} + <tr> + <td>{{ article.date.strftime("%d %b %Y") }}</td> + <td><a href='{{ article.url }}'>{{ article.title }}</a></td> + </tr> + {% endfor %} + </tbody> +</table> + + {% endblock %} |