default.html.twig 496 B

12345678910111213141516
  1. {% extends 'partials/base.html.twig' %}
  2. {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_', "0":"", "1":"", "2":"", "3":"", "4":"", "5":"", "6":"", "7":"", "8":"", "9":"", ".":"","_":"" }) }}{% endmacro %}
  3. {% block content %}
  4. {{ page.content }}
  5. {% endblock %}
  6. {% block body %}
  7. {% for module in page.collection %}
  8. <div id="{{ _self.pageLinkName(module.folder) }}" class="blocs">
  9. {{ module.content }}
  10. </div>
  11. {% endfor %}
  12. {% endblock %}