aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs
diff options
context:
space:
mode:
authorMatts <s@tuxlite.com>2012-02-11 13:34:08 -0500
committerMatts <s@tuxlite.com>2012-02-11 13:34:08 -0500
commit9b90d6e340ab7639e2366ca8f4c75353a435e3d4 (patch)
tree2497805b8b3a8a10d9f4d0b6f538bb0c32dab210 /tuxlite_tbs
parent0fea1a17ba51b155a452af1f4b929103a7c78f31 (diff)
downloadpelican-themes-9b90d6e340ab7639e2366ca8f4c75353a435e3d4.zip
pelican-themes-9b90d6e340ab7639e2366ca8f4c75353a435e3d4.tar.gz
pelican-themes-9b90d6e340ab7639e2366ca8f4c75353a435e3d4.tar.bz2
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.html4
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>