templates/Frontend/Render/Block/_block_formation.html.twig line 1

Open in your IDE?
  1. <div class="formation">
  2.     <div class="container">
  3.         <ul class="nav nav-tabs" id="myTab" role="tablist">
  4.             {% for formation in formations %}
  5.                 <li class="nav-item" role="presentation">
  6.                     <button class="nav-link {% if formation == formations|first %}active{% endif %}" id="tab-{{formation.id}}" data-bs-toggle="tab" data-bs-target="#formation-{{formation.id}}" type="button" role="tab" aria-controls="formation-{{formation.id}}" aria-selected="true">
  7.                         {{formation}}
  8.                         <span>{{formation.duree}}</span>
  9.                     </button>
  10.                 </li>
  11.             {% endfor %}
  12.             
  13.         </ul>
  14.         <div class="tab-content" id="myTabContent">
  15.             {% for tabformation in formations %}
  16.                 <div class="tab-pane fade {% if tabformation == formations|first %}show active{% endif %}" id="formation-{{tabformation.id}}" role="tabpanel" aria-labelledby="tab-{{tabformation.id}}">
  17.                     {% for module in tabformation.modules %}
  18.                         {% if module.publier == 1 %}
  19.                             <div class="row mb-5">
  20.                                 <div class="col-lg-7">
  21.                                 <div class="titre_module">
  22.     <h3>
  23.         <a href="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf" target="_blank">
  24.             <span>{{module.position}}</span>{{module}}
  25.         </a>
  26.     </h3>
  27. </div>
  28.                         
  29.                                 </div>
  30.                                 <div class="col-lg-5">
  31.                                     <div class="profs_module">
  32.                                         <h4>{{'PROFESSOR(s)'|trans}}</h4>
  33.                                         <div class="row">
  34.                                             {% for prof in module.profs %}
  35.                                                 <div class="col-sm-6">
  36.                                                     <div class="prof">
  37.                                                         <div class="img_prof">
  38.                                                             {% if prof.image is not empty %}
  39.                                                                 <img class="img-fluid" src="{{ asset (vich_uploader_asset(prof,'imageFile')) }}" alt="{{prof.nom}}">
  40.                                                             {% else %}
  41.                                                                 <img class="img-fluid" src="/assets/img/no_image.png" alt="{{prof.nom}}">
  42.                                                             {% endif %}
  43.                                                         </div>
  44.                                                         <a {% if prof.link is not empty %}href="{{prof.link}}"{% elseif prof.linkedin is not empty %}href="{{prof.linkedin}}"{% endif %} target="blank">
  45.                                                             <strong>{{prof}}</strong>
  46.                                                             <span>{{prof.mission}}</span>
  47.                                                         </a>
  48.                                                     </div>
  49.                                                 </div>
  50.                                             {% endfor %}
  51.                                         </div>
  52.                                     </div>
  53.                                 </div>
  54.                             </div>
  55.                         {% endif %}
  56.                     {% endfor %}
  57.                 </div>
  58.             {% endfor %}
  59.         </div>
  60.         <div class="link_teachers">
  61.             <a href="{{ path('page_single',{'catslug':'people', 'slug':'predoctoral-program-teachers'}) }}">
  62.                 {{'Teachers of the PhD Program'|trans}}<img class="img-fluid" src="/assets/img/right_arrow_02.png" alt="arrow">
  63.             </a>
  64.         </div>
  65.     </div>
  66. </div>