contenu-accueil.html.twig 428 B

1234567891011
  1. {% macro pageLinkName(text) %}{{ text|lower|replace({'01._':'','02._':'','03._':'','04._':'','05._':'','06._':'','07._':'','08._':'','09._':''}) }}{% endmacro %}
  2. {% block content %}
  3. <h3>{{ header.title }}</h3>
  4. {{ page.content }}
  5. {% for child in page.collection() %}
  6. <div id="{{ _self.pageLinkName(child.folder) }}">
  7. {{ child.content }}
  8. </div>
  9. {% endfor %}
  10. {% endblock %}