From 3ceba838f6c3f1cbab0b363beb5c7ca08abd1383 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Thu, 13 Sep 2012 13:03:42 +0200 Subject: Fixes bad link creation for static pages in the bootstrap theme. In the bootstrap theme, the link was created with a "page" too much, linking once html once generated to localhost:8000/pages/pages/test.html instead of localhost:8000/pages/test.html --- bootstrap/templates/base.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bootstrap/templates/base.html') diff --git a/bootstrap/templates/base.html b/bootstrap/templates/base.html index 9458d6e..49fbd7d 100644 --- a/bootstrap/templates/base.html +++ b/bootstrap/templates/base.html @@ -31,7 +31,7 @@ {% endfor %} {% if DISPLAY_PAGES_ON_MENU %} {% for page in PAGES %} -
  • {{ page.title }}
  • +
  • {{ page.title }}
  • {% endfor %} {% endif %} {% for cat, null in categories %} @@ -43,7 +43,7 @@ -
    +
    -- cgit