50 lines
1.4 KiB
Twig
50 lines
1.4 KiB
Twig
{% 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
|
|
$('#navbar').singlePageNav({
|
|
offset: $('#header').outerHeight(),
|
|
filter: ':not(.external)',
|
|
updateHash: true,
|
|
currentClass: 'active'
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block header_navigation %}
|
|
{% if show_onpage_menu %}
|
|
<ul class="navigation">
|
|
{% for module in page.collection() %}
|
|
|
|
{% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
|
|
<li class="{{ current_module }}"><a href="#{{ _self.pageLinkName(module.menu) }}">{{ module.menu }}</a></li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
{{ parent() }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ page.content }}
|
|
{% for module in page.collection() %}
|
|
<div id="{{ _self.pageLinkName(module.menu) }}"></div>
|
|
{{ module.content }}
|
|
{% endfor %}
|
|
{% endblock %}
|