templates/category/view.html.twig line 1

Open in your IDE?
  1. {% extends "layouts/front.html.twig" %}
  2. {% block title %}{{ category.title }}{% endblock %}
  3. {% if formView is defined %}
  4.     {% form_theme formView 'bootstrap_5_layout.html.twig' %}
  5. {% endif %}
  6. {% block stylesheets %}
  7.     <style>
  8.         {{ getContentData(category.content, 'gjs-css')|raw }}
  9.     </style>
  10. {% endblock %}
  11. {% block body %}
  12.     {% if category.illustration != null %}    
  13.         {{ include('include/_header_page.html.twig', {title: category.title, illustration: category.illustration}) }}
  14.     {% endif %}
  15.     {% if children is defined %}
  16.         {% for child in children %}
  17.             <a href="{{ path('category_view', {'slug': child.slug }) }}">{{ child.title }}</a><br>
  18.         {% endfor %}
  19.     {% endif %}
  20.     {# {% include "include/_blocs.html.twig" %}     #}
  21.     {{ getContentData(category.content, 'gjs-html')|raw }}
  22.     {% if posts is defined %}
  23.         <div class="container-fluid blockactu"> 
  24.             <div class="row gap-3 mb-4">            
  25.                 {% for post in posts %} 
  26.                     {% set counter = ( counter | default(0) ) + 1 %}                
  27.                     {% if counter == 4 %}
  28.                         </div><div class="row gap-3 mb-4">        
  29.                         {% set counter = 1 %}    
  30.                     {% endif %}
  31.                     
  32.                     {{ blogService.getHTMLForOne(post)|raw }}
  33.                     {# {% include "include/post_one.html.twig" %} #}
  34.                 {% endfor %}
  35.             </div>
  36.         </div>
  37.            {% include('include/_pagination.html.twig') %}
  38.     {% endif %}
  39.     {% if presidentsSlide is defined %}
  40.         <div class="container-fluid blockcontent3 grey-style pd2" >
  41.             <h3 class="text-center mb-5 mt-5">LES ANCIENS BÂTONNIERS</h3>
  42.             <div class="slider-2">
  43.                 {% for item in presidentsSlide %}
  44.                     <div class="batonnierslider">
  45.                         <img src="{{ asset(item.picture) }}" class="img-fluid" alt="">
  46.                         <p class="name">{{ item.firstname }} {{ item.lastname }}</p>
  47.                         <p class="time">{{ item.date }}</p>
  48.                     </div>    
  49.                 {% endfor %}
  50.             </div>
  51.         </div>
  52.     {% endif %}
  53.     
  54. {% endblock %}