diff options
author | Justin Mayer <entroP@gmail.com> | 2013-09-09 02:26:44 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-09-09 02:26:44 -0700 |
commit | b0a82f2bb64395d4ba92af9fce1cb3cdc9167975 (patch) | |
tree | 54052bb1d307ca9433e0dad1d059a56e776ccf14 /mnmlist/templates | |
parent | b048e0757c82bd321a3bc2c1e9a7cfd4b9cb30bb (diff) | |
parent | 7f83a42324ec0679ab82448164b8ffd9b0b464f7 (diff) | |
download | pelican-themes-b0a82f2bb64395d4ba92af9fce1cb3cdc9167975.tar.gz |
Merge pull request #134 from bnjmn/patch-1
Fix path issue for archive pages
Diffstat (limited to 'mnmlist/templates')
-rw-r--r-- | mnmlist/templates/archives.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mnmlist/templates/archives.html b/mnmlist/templates/archives.html index 5ba2c81..9425abf 100644 --- a/mnmlist/templates/archives.html +++ b/mnmlist/templates/archives.html @@ -6,7 +6,7 @@ <dl> {% for article in dates %} <dt>{{ article.locale_date }}</dt> - <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd> + <dd><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></dd> {% endfor %} </dl> </section> |