123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {% extends 'partials/base.html.twig' %}
- {% set show_onpage_menu = header.onpage_menu == true or header.onpage_menu is null %}
- {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
- {% block javascripts %}
- {% if show_onpage_menu %}
- {% do assets.add('theme://js/singlepagenav.min.js') %}
- {% endif %}
- {{ parent() }}
- {% endblock %}
- {% block bottom %}
- {{ parent() }}
- {% if show_onpage_menu %}
- <script>
- // singlePageNav initialization & configuration
- $('ul.navigation').singlePageNav({
- offset: $('#header').outerHeight(),
- filter: ':not(.external)',
- updateHash: true,
- currentClass: 'active'
- });
- </script>
- {% endif %}
- {% endblock %}
- {% block header_navigation %}
- {% if show_onpage_menu %}
- {% include 'partials/language-selector.html.twig' %}
- <ul class="navigation">
- {% for module in page.collection() %}
- {% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
- <li><a class="{{ current_module }}" href="#{{ _self.pageLinkName(module.menu) }}">{{ module.menu }}</a></li>
- {% endfor %}
- {% for mitem in site.menu %}
- <li>
- <a {% if mitem.class %}class="{{ mitem.class }}"{% endif %} href="{{ mitem.url }}">
- {% if mitem.icon %}<i class="fa fa-{{ mitem.icon }}"></i>{% endif %}
- {{ mitem.text }}
- </a>
- </li>
- {% endfor %}
- </ul>
- {% else %}
- {{ parent() }}
- {% endif %}
- {% endblock %}
- {% block body %}
- <div id="{{ _self.pageLinkName(page.menu) }}">
- {{page.content}}
- </div>
- {% for module in page.collection() %}
- <div id="{{ _self.pageLinkName(module.menu) }}">
- {{ module.content }}
- </div>
- {% endfor %}
- {% endblock %}
|