templates/team/index.html.twig line 1

Open in your IDE?
  1. {# {% extends 'base.html.twig' %}
  2. {% block title %}Qui suis-je ? 
  3. {% endblock %}
  4. {% block content %}
  5.     {% for team in teams %}
  6. <hr>
  7. <h1 class="text-center">{{ team.name}}</h1>
  8. <div class="row"> 
  9.     <div class="col-lg-2 col-sm-12 container d-flex flex-column justify-content-center text-center">
  10.         <div class="mt-5 actiGal">
  11.             <img src="/uploads/{{ team.gallery }}" alt="{{ team.name }}" class="img-fluid">
  12.         </div>
  13.         <div class="mt-5 actiGal">
  14.             <img src="/uploads/{{ team.gallery2 }}" alt="{{ team.name }}" class="img-fluid">
  15.         </div>
  16.         <div class="mt-5 actiGal">
  17.             <img src="/uploads/{{ team.gallery3 }}" alt="{{ team.name }}" class="img-fluid">
  18.         </div>
  19.     </div>
  20.     <div class="col-lg-8 col-sm-12 mt-5">
  21.         <div class="col-md-8 mt-5">
  22.             <img src="/uploads/{{ team.illustration }}" alt="{{ team.name }}" class="img-fluid">
  23.         </div>
  24.                 
  25.             <hr>
  26.             <p>{{ team.description|nl2br|raw }}
  27.             </p>
  28.     </div>
  29.     <div class="col-lg-2 col-sm-12 container d-flex flex-column justify-content-center text-center">
  30.         <div class=" mt-5 actiGal">
  31.             <img src="/uploads/{{ team.gallery4 }}" alt="{{ team.name }}" class="img-fluid">
  32.         </div>
  33.         <div class="mt-5 actiGal">
  34.             <img src="/uploads/{{ team.gallery5 }}" alt="{{ team.name }}" class="img-fluid">
  35.         </div>
  36.         <div class="mt-5 actiGal">
  37.             <img src="/uploads/{{ team.gallery6 }}" alt="{{ team.name }}" class="img-fluid">
  38.         </div>
  39.     </div>
  40. </div>
  41.     {% endfor %}
  42. {% endblock %} #}
  43. {% extends 'base.html.twig' %}
  44. {% block title %}Qui suis-je ?{% endblock %}
  45. {% block content %}
  46. {% for team in teams %}
  47.     <h1 class="text-center">{{ team.name}}</h1>
  48. <div class="row mt-5">
  49.     <div class="row d-flex flex-row justify-content-center col-lg-8">
  50.             <img src="/uploads/{{ team.illustration }}" alt="{{ team.name }}" class="img-fluid">
  51.         
  52.             <hr>
  53.             <p>{{ team.description|nl2br|raw }}
  54.             </p>
  55.     </div>
  56.         <div class="col-lg-2 col-sm-6 col-6 text-center d-flex flex-column ">
  57.             <div class="mt-5 ">
  58.                 <img src="/uploads/{{ team.gallery }}" alt="{{ team.name }}" class="img-fluid rounded">
  59.             </div>
  60.             <div class="mt-5">
  61.                 <img src="/uploads/{{ team.gallery2 }}" alt="{{ team.name }}" class="img-fluid rounded">
  62.             </div>
  63.             <div class="mt-5">
  64.                 <img src="/uploads/{{ team.gallery3 }}" alt="{{ team.name }}" class="img-fluid rounded">
  65.             </div>
  66.         </div>
  67.         <div class="col-lg-2 col-sm-6 col-6 text-center d-flex flex-column">
  68.             <div class="mt-5">
  69.                 <img src="/uploads/{{ team.gallery4 }}" alt="{{ team.name }}" class="img-fluid rounded">
  70.             </div>
  71.             <div class="mt-5">
  72.                 <img src="/uploads/{{ team.gallery5 }}" alt="{{ team.name }}" class="img-fluid rounded">
  73.             </div>
  74.             <div class="mt-5">
  75.                 <img src="/uploads/{{ team.gallery6 }}" alt="{{ team.name }}" class="img-fluid rounded">
  76.             </div>
  77.         </div>
  78. </div>    
  79. <hr>
  80. {% endfor %}
  81. {% endblock %}