aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2012-04-07 12:11:41 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2012-05-15 20:18:58 +0200
commit9c76a4e3173df48b13e1693fde8550e645c9db61 (patch)
tree600e4254d847c8906c47b8111c0a84faf125318a /tuxlite_tbs
parent8c1f08738507ce76c45de7b9282d74297319304b (diff)
downloadpelican-themes-9c76a4e3173df48b13e1693fde8550e645c9db61.zip
pelican-themes-9c76a4e3173df48b13e1693fde8550e645c9db61.tar.gz
pelican-themes-9c76a4e3173df48b13e1693fde8550e645c9db61.tar.bz2
fix broken Pages url
Diffstat (limited to 'tuxlite_tbs')
-rw-r--r--tuxlite_tbs/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_tbs/templates/base.html b/tuxlite_tbs/templates/base.html
index 2a71f74..ec9e5ea 100644
--- a/tuxlite_tbs/templates/base.html
+++ b/tuxlite_tbs/templates/base.html
@@ -41,7 +41,7 @@
{% 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 %}
</ul>