From 7f83a42324ec0679ab82448164b8ffd9b0b464f7 Mon Sep 17 00:00:00 2001 From: Benjamin Petersen Date: Tue, 27 Aug 2013 23:56:26 -0400 Subject: Fix path issue for archive pages This fixes paths for archive pages. - Previously hyperlinks pointed to current page appended with article url - now links will point to site url appended with article url Tested with Year and Month Archive pages successfully. --- mnmlist/templates/archives.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mnmlist') 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 @@
{% for article in dates %}
{{ article.locale_date }}
-
{{ article.title }}
+
{{ article.title }}
{% endfor %}
-- cgit