aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-03-27 15:39:03 -0700
committerAlexis Metaireau <alexis@notmyidea.org>2012-03-27 15:39:03 -0700
commit421f27905d3f3c11d56c0ac1ae34ef6c34765d37 (patch)
treedc1dcba1352a3659bff74688b75392e3d76a925b
parent51252efe985968fd564c9c68d2c94cf5182557f8 (diff)
parentbf25a8f7c5e634eb245820b09d853ecd0fa57796 (diff)
downloadpelican-themes-421f27905d3f3c11d56c0ac1ae34ef6c34765d37.tar.gz
Merge pull request #21 from tomatic/patch-2
Added missing closing anchor tag
-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 %}