mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 11:01:13 +00:00
53 lines
1.8 KiB
Twig
53 lines
1.8 KiB
Twig
|
{% macro loop(page) %}
|
||
|
{% for p in page.children.visible %}
|
||
|
{% set current_page = (p.active or p.activeChild) ? 'active' : '' %}
|
||
|
{% if p.children.visible.count > 0 %}
|
||
|
<li class="has-children {{ current_page }}">
|
||
|
<a href="{{ p.url }}">
|
||
|
{% if p.header.icon %}<i class="fa fa-{{ p.header.icon }}"></i>{% endif %}
|
||
|
{{ p.menu }}
|
||
|
<span></span>
|
||
|
</a>
|
||
|
<ul>
|
||
|
{{ _self.loop(p) }}
|
||
|
</ul>
|
||
|
</li>
|
||
|
{% else %}
|
||
|
<li class="{{ current_page }}">
|
||
|
<a href="{{ p.url }}">
|
||
|
{% if p.header.icon %}<i class="fa fa-{{ p.header.icon }}"></i>{% endif %}
|
||
|
{{ p.menu }}
|
||
|
</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endmacro %}
|
||
|
|
||
|
<ul class="navigation">
|
||
|
{% if theme_config.dropdown.enabled %}
|
||
|
{{ _self.loop(pages) }}
|
||
|
{% else %}
|
||
|
{% for page in pages.children.visible %}
|
||
|
{% set current_page = (page.active or page.activeChild) ? 'active' : '' %}
|
||
|
<li class="{{ current_page }}">
|
||
|
<a href="{{ page.url }}">
|
||
|
{% if page.header.icon %}<i class="fa fa-{{ page.header.icon }}"></i>{% endif %}
|
||
|
{{ page.menu }}
|
||
|
</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% for mitem in site.menu %}
|
||
|
<li>
|
||
|
<a href="{{ mitem.url }}">
|
||
|
{% if mitem.icon %}<i class="fa fa-{{ mitem.icon }}"></i>{% endif %}
|
||
|
{{ mitem.text }}
|
||
|
</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
{% if config.plugins.login.enabled and grav.user.username %}
|
||
|
<li><i class="fa fa-lock"></i> {% include 'partials/login-status.html.twig' %}</li>
|
||
|
{% endif %}
|
||
|
</ul>
|
||
|
|