diff --git a/themes/hackit0x14/templates/base.html b/themes/hackit0x14/templates/base.html
index 5febab3..d779171 100644
--- a/themes/hackit0x14/templates/base.html
+++ b/themes/hackit0x14/templates/base.html
@@ -115,16 +115,15 @@
- {% for title, link in MENUITEMS %}
+ {% if page %}
+ {% set menu = LOCALMENUITEMS[page.lang] %}
+ {% else %}
+ {% set menu = MENUITEMS %}
+ {% endif %}
+ {% for title, link in menu %}
- {{ title }}
{% endfor %}
- {% if DISPLAY_PAGES_ON_MENU %}
- {% for p in PAGES %}
- -
- {{ p.menulabel|default(p.title) }}
-
- {% endfor %}
- {% endif %}
+
{% if DISPLAY_CATEGORIES_ON_MENU %}
{% for cat, null in categories %}
-
@@ -132,6 +131,7 @@
{% endfor %}
{% endif %}
+
{% if 'tipue_search' in PLUGINS %}