reseausociaux.html.twig 390 B

123456789101112
  1. {% set grid_size = theme_var('grid-size') %}
  2. {% set image = page.media.images|first %}
  3. {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
  4. {% block body %}
  5. {% for module in page.collection %}
  6. <div id="{{ module.header.id }}">
  7. {{ module.content }}
  8. <svg width="500" height="500"></svg>
  9. </div>
  10. {% endfor %}
  11. {% endblock %}