FIX localized menu
This commit is contained in:
parent
318157be36
commit
c1f9d58bf9
1 changed files with 8 additions and 8 deletions
|
@ -115,16 +115,15 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
||||||
<ul class="nav navbar-nav">
|
<ul class="nav navbar-nav">
|
||||||
{% for title, link in MENUITEMS %}
|
{% if page %}
|
||||||
|
{% set menu = LOCALMENUITEMS[page.lang] %}
|
||||||
|
{% else %}
|
||||||
|
{% set menu = MENUITEMS %}
|
||||||
|
{% endif %}
|
||||||
|
{% for title, link in menu %}
|
||||||
<li><a href="{{ link }}">{{ title }}</a></li>
|
<li><a href="{{ link }}">{{ title }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if DISPLAY_PAGES_ON_MENU %}
|
|
||||||
{% for p in PAGES %}
|
|
||||||
<li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">
|
|
||||||
{{ p.menulabel|default(p.title) }}
|
|
||||||
</a></li>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
||||||
{% for cat, null in categories %}
|
{% for cat, null in categories %}
|
||||||
<li {% if cat == category %}class="active"{% endif %}>
|
<li {% if cat == category %}class="active"{% endif %}>
|
||||||
|
@ -132,6 +131,7 @@
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="nav navbar-nav navbar-right">
|
<ul class="nav navbar-nav navbar-right">
|
||||||
{% if 'tipue_search' in PLUGINS %}
|
{% if 'tipue_search' in PLUGINS %}
|
||||||
|
|
Loading…
Reference in a new issue