diff options
author | tomatic <github@webmailetc.com> | 2012-03-20 13:43:23 +0100 |
---|---|---|
committer | tomatic <github@webmailetc.com> | 2012-03-20 13:43:23 +0100 |
commit | bf25a8f7c5e634eb245820b09d853ecd0fa57796 (patch) | |
tree | e6dffac1ddbfcb1d9a2101770fd78fb57a268f4f /bootstrap/templates/archives.html | |
parent | e38b06c659d60590c0000f2938387d7fa161e2e5 (diff) | |
download | pelican-themes-bf25a8f7c5e634eb245820b09d853ecd0fa57796.tar.gz |
Added missing closing anchor tag
Diffstat (limited to 'bootstrap/templates/archives.html')
-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 %} |