aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authortomatic <github@webmailetc.com>2012-03-20 13:43:23 +0100
committertomatic <github@webmailetc.com>2012-03-20 13:43:23 +0100
commitbf25a8f7c5e634eb245820b09d853ecd0fa57796 (patch)
treee6dffac1ddbfcb1d9a2101770fd78fb57a268f4f /bootstrap
parente38b06c659d60590c0000f2938387d7fa161e2e5 (diff)
downloadpelican-themes-bf25a8f7c5e634eb245820b09d853ecd0fa57796.zip
pelican-themes-bf25a8f7c5e634eb245820b09d853ecd0fa57796.tar.gz
pelican-themes-bf25a8f7c5e634eb245820b09d853ecd0fa57796.tar.bz2
Added missing closing anchor tag
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/templates/archives.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/templates/archives.html b/bootstrap/templates/archives.html
index 2d02e12..6dee8ed 100644
--- a/bootstrap/templates/archives.html
+++ b/bootstrap/templates/archives.html
@@ -7,7 +7,7 @@
<h3>{{ articles[ 0 ].date.strftime( '%B' ) }}</h3>
<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 %}