diff options
author | Matts <s@tuxlite.com> | 2012-02-11 13:34:08 -0500 |
---|---|---|
committer | Matts <s@tuxlite.com> | 2012-02-11 13:34:08 -0500 |
commit | 9b90d6e340ab7639e2366ca8f4c75353a435e3d4 (patch) | |
tree | 2497805b8b3a8a10d9f4d0b6f538bb0c32dab210 /tuxlite_tbs | |
parent | 0fea1a17ba51b155a452af1f4b929103a7c78f31 (diff) | |
download | pelican-themes-9b90d6e340ab7639e2366ca8f4c75353a435e3d4.tar.gz |
Changed header elements from h2 to h1 and h3 to h2 in archives.html
Diffstat (limited to 'tuxlite_tbs')
-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> |