git » blitiri » commit 1bc43a0

Fix links to articles in the list view

author Alberto Bertogli
2008-09-06 13:56:11 UTC
committer Alberto Bertogli
2008-09-06 13:56:11 UTC
parent 5e8777f5ad10826e8b5c5869e1547710772fb6e4

Fix links to articles in the list view

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

blitiri.cgi +1 -1

diff --git a/blitiri.cgi b/blitiri.cgi
index 8c6c6dc..bac048b 100755
--- a/blitiri.cgi
+++ b/blitiri.cgi
@@ -1068,7 +1068,7 @@ def render_artlist(articles, db, actyear = None):
 	print template.get_main_header()
 	print '<h2>Articles</h2>'
 	for a in articles:
-		print '<li><a href="%(url)s/uuid/%(uuid)s">%(title)s</a></li>' \
+		print '<li><a href="%(url)s/post/%(uuid)s">%(title)s</a></li>' \
 			% {	'url': blog_url,
 				'uuid': a.uuid,
 				'title': a.title,