templates/dossier/pattern/_prenom_participants.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'walkinn' %}
  2. {% set count = liste|length %}
  3. <link rel="preconnect" href="https://fonts.googleapis.com">
  4. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  5. <link href="https://fonts.googleapis.com/css2?family=MuseoModerno:wght@300&display=swap" rel="stylesheet">
  6. <link href="https://fonts.cdnfonts.com/css/museo" rel="stylesheet">
  7. <p style="text-align: center;font-size: 30px;font-family: 'Museo', cursive;font-weight: normal;color: #353341;">
  8. {% for item in liste %}
  9.     {{ item.pax }}{% if item != liste|last %}{% if loop.index == count-1 %} • {% else %} • {% endif %}{% endif %}
  10. {% endfor %}
  11. </p>