templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Page d'accueil{% endblock %}
  3. {% block body %}
  4. <div class="imageProjet">
  5. <div class="container">
  6. <h1 class = "text-center" style="color:white;">Mes rĂ©alisations</h1>
  7. {% for projet in projets %}
  8.   <div class="projet">
  9.     <div class="card col-md-6 m-4" style=" width: 19.5rem; border-radius: 3%; border: 3px solid black;">
  10.       <img src="{{ asset('uploads/lien/' ~ projet.lien)}}" class="card-img-top-projet" alt="image_projet">
  11.       <div class="card-body">
  12.         <h5 class="card-title" style="text-align:center">{{ projet.titre }}</h5>
  13.         <p class="card-text">{{ projet.description }}</p>
  14.         <div class="buttons">
  15.         <a href="{{path('app_view_projet', {'id': projet.id})}}" class="btn btn-success">Voir projet</i></a>
  16.         {%  if projet.liengithub != NULL %}
  17.         <a href="{{projet.liengithub}}" class="btn btn-primary">Voir Github</i></a>
  18.         {% endif %}
  19.         {# #}{%  if is_granted('ROLE_ADMIN') %}
  20.         <a href="{{path('app_projet_delete', {'id': projet.id})}}" class="btn btn-danger"><i class="text-warning fa fa-trash"></i></a>
  21.         <a href="{{path('app_projet_edit', {'id': projet.id})}}" class="btn btn-success"><i class="text-warning fa fa-edit"></i></a>
  22.         {% endif %} 
  23.         <br>
  24.     </div>
  25.       </div>
  26.     </div>
  27.   </div>
  28. {% endfor %}
  29. </div>
  30. </div>
  31. {% endblock %}