diff options
author | Matts <s@tuxlite.com> | 2012-02-11 13:44:42 -0500 |
---|---|---|
committer | Matts <s@tuxlite.com> | 2012-02-11 13:44:42 -0500 |
commit | 223b93e987e5a19c3681a9517d45b6163e45bcc5 (patch) | |
tree | 4d30355ed7baa57a7276d44ece01a750662ffd9b /tuxlite_tbs | |
parent | 9b90d6e340ab7639e2366ca8f4c75353a435e3d4 (diff) | |
download | pelican-themes-223b93e987e5a19c3681a9517d45b6163e45bcc5.tar.gz |
Added missing </a> tag. Edited header elements.
Diffstat (limited to 'tuxlite_tbs')
-rw-r--r-- | tuxlite_tbs/templates/archives.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tuxlite_tbs/templates/archives.html b/tuxlite_tbs/templates/archives.html index 6f30f06..1032c42 100644 --- a/tuxlite_tbs/templates/archives.html +++ b/tuxlite_tbs/templates/archives.html @@ -2,12 +2,12 @@ {% block title %}{{ SITENAME }} <small>[archive]</small>{% endblock %} {% block content %} {% for year, date_year in dates|groupby( 'date.year' ) %} -<h1>{{ year }}</h1> +<h2>{{ year }}</h2> {% for month, articles in date_year|groupby( 'date.month' ) %} -<h2>{{ articles[ 0 ].date.strftime( '%B' ) }}</h2> +<p><b>{{ articles[ 0 ].date.strftime( '%B' ) }}</b></p> <ul> {% for article in articles %} - <li><a href="{{ article.url }}">{{ article.title }}</li> + <li><a href="{{ article.url }}">{{ article.title }}</a></li> {% endfor %} </ul> {% endfor %} |