diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-11-20 15:30:44 -0800 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-11-20 15:30:44 -0800 |
commit | 6e7aad9d3d67229056c6d876384f73a17132718e (patch) | |
tree | 7427f6e251396e3fa3fb5624d15d80fdccd555d8 /bootstrap/templates/base.html | |
parent | 245beac5bfe7d13bf9baee3037ca48d574d8efe3 (diff) | |
parent | 3ceba838f6c3f1cbab0b363beb5c7ca08abd1383 (diff) | |
download | pelican-themes-6e7aad9d3d67229056c6d876384f73a17132718e.tar.gz |
Merge pull request #50 from jlengrand/master
Fix small error in bootstrap theme
Diffstat (limited to 'bootstrap/templates/base.html')
-rw-r--r-- | bootstrap/templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
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 %} - <li><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></li> + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> {% endfor %} {% endif %} {% for cat, null in categories %} @@ -43,7 +43,7 @@ </div> </div> - <div class="container-fluid"> + <div class="container-fluid"> <div class="sidebar"> <div class="well"> <h3>Blogroll</h3> @@ -70,7 +70,7 @@ <p>© {{ AUTHOR }} 2011</p> </footer> </div> - + </div> </body> </html> |