diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-03-27 15:39:03 -0700 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-03-27 15:39:03 -0700 |
commit | 421f27905d3f3c11d56c0ac1ae34ef6c34765d37 (patch) | |
tree | dc1dcba1352a3659bff74688b75392e3d76a925b /bootstrap | |
parent | 51252efe985968fd564c9c68d2c94cf5182557f8 (diff) | |
parent | bf25a8f7c5e634eb245820b09d853ecd0fa57796 (diff) | |
download | pelican-themes-421f27905d3f3c11d56c0ac1ae34ef6c34765d37.tar.gz |
Merge pull request #21 from tomatic/patch-2
Added missing closing anchor tag
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/templates/archives.html | 2 |
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 %} |