templates/company/presentation/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Joinez Baadhi {{ parent() }}{% endblock %}
  3. {% block baadhi %}
  4.     <li class="nav-item">
  5.         <a class="nav-link active font-weight-bold" href="{{ path('company.select-type') }}">Joinez Baadhi dès maintenant </a>
  6.     </li>
  7. {% endblock %}
  8. {% block body %}
  9. <div class="container mt-4">
  10.     <h4 class="font-weight-normal text-center">Baadhi pour entreprise</h4>
  11.     <h6 class="text-center mb-4">Consulter le model qui vaut à votre business</h6>
  12.     <div class="row mx-auto col-md-10">
  13.         {% for presentation in presentations %}
  14.             <div class="col-md-6 col-sm-12 mb-2">
  15.                 <div class="card p-3 ">
  16.                     <blockquote class="blockquote mb-0">
  17.                         <h4>{{ presentation.name }}</h4>
  18.                         <footer class="blockquote-footer mb-2">
  19.                             {{ presentation.abbreviation }}
  20.                         </footer>
  21.                         <a href="{{ path('company.presentation.show', {'slug': presentation.slug}) }}" class="btn btn-outline-primary btn-block btn-sm">
  22.                             Consulter plus
  23.                         </a>
  24.                     </blockquote>
  25.                     {% if is_granted('ROLE_ADMIN') %}
  26.                         <small>
  27.                             <a href="{{ path('company.presentation.edit', {'slug': presentation.slug}) }}">Editez</a>
  28.                         </small>
  29.                     {% endif %}
  30.                 </div>
  31.             </div>
  32.         {% endfor %}
  33.     </div>
  34. </div>
  35. {% endblock %}