submodular.html.twig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
  2. {% block body %}
  3. <div class="column red">
  4. <div class="citation">
  5. {{page.content}}
  6. </div>
  7. <div class="chap">
  8. <h2>{{page.title|upper}}</h2>
  9. {% if header.sous_title %}
  10. <p>{{header.sous_title}}</p>
  11. {% endif %}
  12. {% for module in page.collection() %}
  13. <!-- <a href="#{{module.title}}">{{module.title|upper}}</a> -->
  14. {% endfor %}
  15. <div class="reso">
  16. <a href="https://www.facebook.com/anissabensalah.officiel/" target="_blank">
  17. <img src="/user/themes/anissabensalah/images/fb.svg" alt="">
  18. </a>
  19. <a href="https://www.youtube.com/channel/UCVKInDwZs0LdeJ-4srpUFuQ" target="_blank">
  20. <img src="/user/themes/anissabensalah/images/yt.svg" alt="" >
  21. </a>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="column content" data-midnight=black>
  26. {% for module in page.collection() %}
  27. {{ module.content }}
  28. {% endfor %}
  29. </div>
  30. {% endblock %}