Removed if loop from base.html. page.category|lower = documentation

This commit is contained in:
Matts
2012-02-11 06:12:47 -05:00
parent 7317bd8232
commit 79d93cef80

View File

@@ -35,9 +35,7 @@
{% if DISPLAY_PAGES_ON_MENU %}
{% for page in PAGES %}
{% if page.category|lower != "documentation" %}
<li><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></li>
{% endif %}
{% endfor %}
{% endif %}
</ul>