diff options
Diffstat (limited to 'tuxlite_tbs/templates')
-rw-r--r-- | tuxlite_tbs/templates/archives.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tuxlite_tbs/templates/archives.html b/tuxlite_tbs/templates/archives.html index 2d02e12..6f30f06 100644 --- a/tuxlite_tbs/templates/archives.html +++ b/tuxlite_tbs/templates/archives.html @@ -2,9 +2,9 @@ {% block title %}{{ SITENAME }} <small>[archive]</small>{% endblock %} {% block content %} {% for year, date_year in dates|groupby( 'date.year' ) %} -<h2>{{ year }}</h2> +<h1>{{ year }}</h1> {% for month, articles in date_year|groupby( 'date.month' ) %} -<h3>{{ articles[ 0 ].date.strftime( '%B' ) }}</h3> +<h2>{{ articles[ 0 ].date.strftime( '%B' ) }}</h2> <ul> {% for article in articles %} <li><a href="{{ article.url }}">{{ article.title }}</li> |