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
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user