modular.html.twig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 javascripts %}
  6. {% if show_onpage_menu %}
  7. {% do assets.add('theme://js/singlepagenav.min.js') %}
  8. {% endif %}
  9. {{ parent() }}
  10. {% endblock %}
  11. {% block bottom %}
  12. {{ parent() }}
  13. {% if show_onpage_menu %}
  14. <script>
  15. // singlePageNav initialization & configuration
  16. $('ul.navigation').singlePageNav({
  17. offset: $('#header').outerHeight(),
  18. filter: ':not(.external)',
  19. updateHash: true,
  20. currentClass: 'active'
  21. });
  22. </script>
  23. {% endif %}
  24. {% endblock %}
  25. {% block header_navigation %}
  26. {% if show_onpage_menu %}
  27. <ul class="navigation">
  28. {% for module in page.collection() if module.header.visible is not same as(false) %}
  29. {% set current_module = (module.active or module.activeChild) ? 'active' : '' %}
  30. <li><a class="{{ current_module }}" href="#{{ macro.pageLinkName(module.menu) }}">{{ module.menu }}</a></li>
  31. {% endfor %}
  32. {% for mitem in site.menu %}
  33. <li>
  34. <a {% if mitem.class %}class="{{ mitem.class }}"{% endif %} href="{{ mitem.url }}">
  35. {% if mitem.icon %}<i class="fa fa-{{ mitem.icon }}"></i>{% endif %}
  36. {{ mitem.text }}
  37. </a>
  38. </li>
  39. {% endfor %}
  40. </ul>
  41. {% else %}
  42. {{ parent() }}
  43. {% endif %}
  44. {% endblock %}
  45. {% block body %}
  46. <section id="home">
  47. {{ content }}
  48. </section>
  49. {% for module in page.collection() %}
  50. <div class="filet"></div>
  51. <h2>{{ module.title|raw }}</h2>
  52. <section id="{{ macro.pageLinkName(module.menu) }}">
  53. {{ module.content|raw }}
  54. {% for children in module.collection() %}
  55. {{children.content}}
  56. {% endfor %}
  57. </section>
  58. {% endfor %}
  59. {% endblock %}