mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-19 16:39:01 +00:00
59 lines
No EOL
1.8 KiB
Twig
59 lines
No EOL
1.8 KiB
Twig
{% block menu_navigation %}
|
|
{% 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="{{ current_page }}">
|
|
<a class="dropdown-btn">
|
|
{% if p.header.icon %}
|
|
<i class="fa fa-{{ p.header.icon }}"></i>
|
|
{% endif %}
|
|
<span>{{ p.menu }}
|
|
{% if p.routable ?? false %} <i class="fa fa-caret-down"></i>
|
|
{% endif %}
|
|
</span>
|
|
</a>
|
|
<ul class="subitem_hide">
|
|
{{ _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 %}
|
|
<span>{{ p.menu }}</span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endmacro %}
|
|
<ul class="menulink">
|
|
{{ _self.loop(pages) }}
|
|
{% if theme_var('custommenus.enabled') %}
|
|
{% for mitem in theme_var('custommenu') %}
|
|
<li>
|
|
<a href="{{ mitem.url }}" target="{{ mitem.target }}">
|
|
{% if mitem.icon %}
|
|
<i class="fa fa-{{ mitem.icon }}"></i>
|
|
{% endif %}
|
|
<span>{{ mitem.text }}</span>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
<script>
|
|
if ((window.innerWidth || document.documentElement.clientWidth) < 980){
|
|
/* Script for dropdown menu in sidebar */
|
|
$(".subitem_hide").hide(); /* this hides the list initially */
|
|
$(".dropdown-btn").click(function () {
|
|
$(this).next(".subitem_hide").slideToggle();
|
|
});
|
|
}
|
|
</script>
|
|
{% endblock %} |