2022-04-19 03:49:18 +00:00
|
|
|
{% block bodyNavigation %}
|
|
|
|
{% set center = false %}
|
|
|
|
{% set right = false %}
|
|
|
|
{% if main_menu %}
|
|
|
|
{% for menu in main_menu %}
|
|
|
|
{% if menu.root and menu.position == 'center' %}
|
|
|
|
{% set center = true %}
|
|
|
|
{% elseif menu.root and menu.position == 'right' %}
|
|
|
|
{% set right = true %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2022-04-17 21:04:21 +00:00
|
|
|
<nav class="uk-navbar-container" uk-navbar>
|
|
|
|
<div class="uk-navbar-center">
|
|
|
|
<ul class="uk-navbar-nav">
|
2022-04-19 03:49:18 +00:00
|
|
|
<li class="uk-active"><a href="{{ route() }}">Home</a></li>
|
|
|
|
{% if center %}
|
|
|
|
{% for menu in main_menu %}
|
|
|
|
{% if menu.root and menu.position == 'center' %}
|
|
|
|
<li><a href="{{ route() }}{{ menu.path }}">{{ menu.title }}</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2022-04-17 21:04:21 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2022-04-19 03:49:18 +00:00
|
|
|
{% if right %}
|
2022-04-17 21:04:21 +00:00
|
|
|
<div class="uk-navbar-right">
|
|
|
|
<ul class="uk-navbar-nav">
|
2022-04-19 03:49:18 +00:00
|
|
|
{% if right %}
|
|
|
|
{% for menu in main_menu %}
|
|
|
|
{% if menu.root and menu.position == 'right' %}
|
|
|
|
<li><a href="{{ route() }}{{ menu.path }}">{{ menu.title }}</a></li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2022-04-17 21:04:21 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2022-04-19 03:49:18 +00:00
|
|
|
{% endif %}
|
2022-04-17 21:04:21 +00:00
|
|
|
</nav>
|
2022-04-19 03:49:18 +00:00
|
|
|
{% endblock %}
|