templates/homepage/homepage_default.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block layout %}
  3. <div class="row">
  4.     <!-- NAVBAR LATERALE -->
  5.     <div class="d-lg-block col-lg-3">
  6.         <div class="list-group" style="position:sticky;top:25px;">
  7.             <a href="{{ path('homepage', {categorie: null}) }}" class="list-group-item list-group-item-action">
  8.                 Toutes les catégories
  9.             </a>
  10.             <a href="{{ path('homepage', {categorie: 'jurisprudences'}) }}" class="list-group-item list-group-item-action">
  11.                 Les jurisprudences
  12.             </a>
  13.             <a href="{{ path('homepage', {categorie: 'infos'}) }}" class="list-group-item list-group-item-action">
  14.                 Les actualités
  15.             </a>
  16.             <a href="{{ path('homepage', {categorie: 'tutos'}) }}" class="list-group-item list-group-item-action">
  17.                 La Base
  18.             </a>
  19.         </div>
  20.     </div>
  21.     <div class="col-lg-9 col-12">
  22.        <div class="row">
  23.             {% for data in dataContent %}
  24.                 <div class="col-sm-12 col-lg-6" style="padding-bottom:30px;">
  25.                     <div class="card" style="border: 1px solid black;height: 100%;min-height:215px">
  26.                         <h5 class="card-header">
  27.                             <strong>
  28.                                 {{ data.title }}
  29.                             </strong>
  30.                         </h5>
  31.                         <div class="card-body">
  32.                             <p class="card-text">
  33.                                 <i>
  34.                                     {{ data.content|length > 200 ? data.content|slice(0,200)|raw : data.content|raw }}
  35.                                     {{ data.content|length > 200 ? '...' : ''}}
  36.                                 </i>
  37.                             </p>
  38.                         </div>
  39.                         <div class="card-footer">
  40.                             {% if data.type == 'tuto' %}
  41.                                 <a href="{{ path('tuto_read', {tutoId: data.id}) }}" style="float:right" class="btn btn-primary">
  42.                                     Lire le tuto
  43.                                 </a>
  44.                             {% elseif data.type == 'news' %}
  45.                                 <a href="{{ path('news_read', {actuId: data.id}) }}" style="float:right" class="btn btn-primary">
  46.                                     Lire l'actu
  47.                                 </a>
  48.                             {% else %}
  49.                                 <a href="{{ path('jurisprudence_show', {jurisprudenceId: data.id}) }}" style="float:right" class="btn btn-primary">
  50.                                     Consulter la jurisprudence
  51.                                 </a>
  52.                             {% endif %}
  53.                         </div>
  54.                     </div>
  55.                 </div>
  56.             {% endfor %}
  57.         </div>
  58.         <div class="navigation">
  59.             {{ knp_pagination_render(dataContent) }}
  60.         </div>
  61.     </div>
  62. </div>
  63. {% endblock %}