private\formations\Page.twig line 1

  1. {% extends "base.html.twig" %}
  2. {% block title %}
  3.     Découvrez notre catalogue de formations | Illusion & Macadam
  4. {% endblock %}
  5. {% block body %}
  6.     <div class="container page">
  7.         <div class="header">
  8.             <a href="/formations">LISTE DE NOS FORMATIONS</a>
  9.             <img src="/images/dot_red.svg" width="10">
  10.             <a href="/formations_partenaires">FORMATIONS PARTENAIRES</a>
  11.             <img src="/images/dot_red.svg" width="10">
  12.             {% set isFirstIteration = true %}
  13.             {% for pagesFormation in pagesFormations %}
  14.                 {% if isFirstIteration == false %}
  15.                     <img src="/images/dot_red.svg" width="10">
  16.                 {% endif %}
  17.                 <a class="uppercase" href={% if pagesFormation.pages__lien_externe %} "{{ pagesFormation.pages__lien_externe }}" target="_blank" {% else %} "{{ pagesFormation.pages__url }}" {% endif %}>{{ pagesFormation.pages__name }}</a>
  18.                 {% set isFirstIteration = false %}
  19.             {% endfor %}
  20.         </div>
  21.         <div class="position-relative">
  22.             <div class="textes-gauche"></div>
  23.             <div class="content row">
  24.                 {% include '/formations/PageLeft.twig' %}
  25.                 {% include '/formations/PageRight.twig' %}
  26.             </div>
  27.         </div>
  28.     </div>
  29. {% endblock %}