| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | 
							- {% extends 'partials/base.html.twig' %}
 
- {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
 
- {% import _self as macro %}
 
- {% set show_onpage_menu = header.onpage_menu == true or header.onpage_menu is null %}
 
- {% 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 %}
 
- <!-- test -->
 
-     {% if show_onpage_menu %}
 
-         <ul class="navigation">
 
-         {% for module in page.collection() if module.header.visible is not same as(false) %}
 
-             {% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
 
-             <li><a class="{{ current_module }}" href="#{{ macro.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 hero %}
 
-     {% for module in page.collection() if module.template == 'modular/hero' %}
 
-         <div id="{{ macro.pageLinkName(module.menu) }}"></div>
 
-         {{ module.content|raw }}
 
-     {% endfor %}
 
- {% endblock %}
 
- {% block body %}
 
-     {% for module in page.collection() if module.template != 'modular/hero' %}
 
-         <div id="{{ macro.pageLinkName(module.menu) }}"></div>
 
-         {{ module.content|raw }}
 
-     {% endfor %}
 
- {% endblock %}
 
 
  |