templates/themesWebsite/cvs/website/metier.html.twig line 1

Open in your IDE?
  1. {% extends 'themesWebsite/blog_cvs/base.html.twig' %}
  2. {% block title %}{{ bigCategory.shortTitle }}{% endblock title %}
  3. {% block description %}{{ bigCategory.shortDescription }}{% endblock description %}
  4. {% block robots %}index,follow{% endblock robots %}
  5. {#% block meta_social %}{{ parent() }}{% include "/themesWebsite/blog_cpn/components/socialmedia.html.twig" with { 'page':page,'social_type':'website' } %}{% endblock meta_social %}
  6. {% block meta %}{{ parent() }}{% include "/themesWebsite/blog_cpn/components/author.html.twig" with {'page':page } %}{% endblock meta %#}
  7. {% block body %}
  8.     <div class="image-cover hero-header">
  9.         <div class="container">
  10.             <div class="row justify-content-between align-items-center">
  11.                 <div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 pe-xl-5 pe-lg-4">
  12.                     <h1 class="mb-4">{{ bigCategory.title }}</h1>
  13.                     <p class="fs-5">{{  bigCategory.description }}</p>
  14.                 </div>
  15.                 <div class="col-xl-5 col-lg-5 col-md-12 col-sm-12">
  16.                 </div>
  17.             </div>
  18.             <div class="row gx-4 gy-4">
  19.                 {% for cat in categories %}
  20.                     <div class="col-xl-3 col-lg-3 col-md-4 col-sm-6">
  21.                         <div class="card border py-4 px-4 rounded-4 mb-0">
  22.                             <div class="ctrd-icons mb-3">
  23.                                 {{ cat.icon|raw }}
  24.                             </div>
  25.                             <div class="ctrd-caps">
  26.                                 <h4 class="fs-5"><a href="{{ path('cvs_website_category',{'slug':cat.slug}) }}">{{ cat.title }}</a></h4>
  27.                                 <p class="mb-3">{{ cat.description }}</p>
  28.                             </div>
  29.                         </div>
  30.                     </div>
  31.                 {% endfor %}
  32.             </div>
  33.         </div>
  34.     </div>
  35. {% endblock body %}