modular.html.twig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends 'partials/base.html.twig' %}
  2. {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
  3. {% import _self as macro %}
  4. {% set show_onpage_menu = header.onpage_menu == true or header.onpage_menu is null %}
  5. {% block header_navigation %}
  6. {% if show_onpage_menu %}
  7. <ul class="navigation">
  8. {% for module in page.collection() if module.header.visible is not same as(false) %}
  9. {% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
  10. <li><a class="{{ current_module }}" href="#{{ macro.pageLinkName(module.menu) }}">{{ module.menu }}</a></li>
  11. {% endfor %}
  12. {% for mitem in site.menu %}
  13. <li>
  14. <a {% if mitem.class %}class="{{ mitem.class }}"{% endif %} href="{{ mitem.url }}">
  15. {% if mitem.icon %}<i class="fa fa-{{ mitem.icon }}"></i>{% endif %}
  16. {{ mitem.text }}
  17. </a>
  18. </li>
  19. {% endfor %}
  20. </ul>
  21. {% else %}
  22. {{ parent() }}
  23. {% endif %}
  24. {% endblock %}
  25. {% block hero %}
  26. {% for module in page.collection() if module.template == 'modular/hero' %}
  27. <div id="{{ macro.pageLinkName(module.menu) }}"></div>
  28. {{ module.content|raw }}
  29. {% endfor %}
  30. {% endblock %}
  31. {% block body %}
  32. {% for module in page.collection() if module.template != 'modular/hero' %}
  33. <div id="{{ macro.pageLinkName(module.menu) }}"></div>
  34. {{ module.content|raw }}
  35. {% endfor %}
  36. {% endblock %}