aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs
diff options
context:
space:
mode:
authorMatts <s@tuxlite.com>2012-02-11 13:44:42 -0500
committerMatts <s@tuxlite.com>2012-02-11 13:44:42 -0500
commit223b93e987e5a19c3681a9517d45b6163e45bcc5 (patch)
tree4d30355ed7baa57a7276d44ece01a750662ffd9b /tuxlite_tbs
parent9b90d6e340ab7639e2366ca8f4c75353a435e3d4 (diff)
downloadpelican-themes-223b93e987e5a19c3681a9517d45b6163e45bcc5.zip
pelican-themes-223b93e987e5a19c3681a9517d45b6163e45bcc5.tar.gz
pelican-themes-223b93e987e5a19c3681a9517d45b6163e45bcc5.tar.bz2
Added missing </a> tag. Edited header elements.
Diffstat (limited to 'tuxlite_tbs')
-rw-r--r--tuxlite_tbs/templates/archives.html6
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 %}