templates/default/footer_link.html.twig line 1

Open in your IDE?
  1. <h3>Liens utiles</h3>
  2. <ul class="list-link">
  3. {#    <li><a href="{{ path('hs_public_about') }}">À propos d'SMART-FOCUS</a></li>#}
  4.     <li><a href="{{ path('hs_public_tutoring_index') }}">Soutien scolaire</a></li>
  5.     {% if categorys is not empty %}
  6.                 {% for cat in categorys  %}
  7.                     <li><a href="{{ path('hs_public_activity_index', {'slug':cat.slug}) }}">{{ cat.name }}</a></li>
  8.                 {% endfor %}
  9.     {% endif %}
  10.     <li><a href="{{ path('hs_public_contact') }}l">Nous contacter</a></li>
  11. </ul>