templates/pages/internes/articles/incontournables.html.twig line 1

Open in your IDE?
  1. {% extends 'layouts/front/baseinternes.html.twig' %}
  2. {% block title %}{{ parametres.structure.name ?? company_name }} | {{ title }}{% endblock %}
  3. {% block stylesheets %}
  4. <style>
  5.     .blog-single-aside__content .title{
  6.         color: #993300!important;
  7.         text-shadow: none!important;
  8.     }
  9.     p{text-align: justify;margin-bottom:1rem!important}
  10. </style>
  11. {% endblock %}
  12. {% block body %}
  13.     <section class="top-banniere">
  14.         <div class="page-banner" style="background-image: url(
  15.         {{ asset('assetics/internes/images/newsun.jpg') }}
  16.         )">
  17.             {{ fil_arial(title) }}
  18.         </div>
  19.     </section>
  20.     <section class="tour-item-banner-2">
  21.         <div class="container">
  22.             <h4 class="pull-right"><a href="{{ path('home') }}">Accueil</a> / {{ menu }} / <span> {{ title }}</span></h4>
  23.         </div>
  24.     </section>
  25.     <section class="mt-2">
  26.         <div class="container">
  27.             <div class="special-tour__tittle">
  28.                 <!-- section tittle -->
  29.                 <div class="section-tittle">
  30.                     <h2>{{ title }}</h2>
  31.                     <div class="section-tittle__line-under"></div>
  32.                     <p><span>{{ title }}</span></p>
  33.                 </div>
  34.                 <p class="destination-4-2__sub-tittle" style="width: 100%!important;">
  35.                 </p>
  36.             </div>
  37.             {% if articles|length != 0 %}
  38.                 <div class="best-selling-tour mt-lg-5">
  39.                     <div class="row">
  40.                         {% include 'pages/internes/articles/partials/__card.html.twig' with {articles: articles } %}
  41.                     </div>
  42.                 </div>
  43.                 <div class="destination-mansory-layout__pagination" style="padding: 10px 0 20px;">
  44.                     <!-- pagination -->
  45.                     <div class="wander-pagination__pagination" style="display: flex; justify-content: center; justify-items: center;">
  46.                         <div>
  47.                             {{ knp_pagination_render(articles) }}
  48.                         </div>
  49.                     </div>
  50.                 </div>
  51.             {% else %}
  52.                 <div class="jumbotron mt-5">
  53.                     <div class="alert alert-info">
  54.                         <i class="fa fa-info-circle"></i> Aucune donnĂ©e disponible pour le mmoment
  55.                     </div>
  56.                 </div>
  57.             {% endif %}
  58.         </div>
  59.     </section>
  60. {% endblock %}