templates/home/faq.html.twig line 1

Open in your IDE?
  1. {% extends 'front/base.html.twig' %}
  2. {% block title %}Hello MainController!{% endblock %}
  3. {% block body %}
  4.     <!-- WELCOME -->
  5.     <section class="py-10 py-md-14 overlay overlay-black overlay-60 bg-cover"
  6.              style="background-image: url({{ post.image }});background-position: 100% 30%">
  7.         <div class="container">
  8.             <div class="row justify-content-center">
  9.                 <div class="col-12 col-md-10 col-lg-8 text-center">
  10.                     <!-- Heading -->
  11.                     <h1 class="display-2 fw-bold text-white">
  12.                         {{ post.title }}
  13.                     </h1>
  14.                 </div>
  15.             </div> <!-- / .row -->
  16.         </div> <!-- / .container -->
  17.     </section>
  18.     <!-- SHAPE -->
  19.     <div class="position-relative">
  20.         <div class="shape shape-bottom shape-fluid-x text-light">
  21.             <svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  22.                 <path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/>
  23.             </svg>
  24.         </div>
  25.     </div>
  26.     <div class="container">
  27.         <div class="row">
  28.             <nav aria-label="breadcrumb">
  29.                 <ol class="breadcrumb breadcrumb-scroll">
  30.                     <li class="breadcrumb-item">
  31.                         <a class="text-gray-700" href="{{ path('home') }}">
  32.                             Accueil
  33.                         </a>
  34.                     </li>
  35.                     <li class="breadcrumb-item active" aria-current="page">
  36.                         {{ post.title }}
  37.                     </li>
  38.                 </ol>
  39.             </nav>
  40.         </div>
  41.     </div>
  42.     <!-- ARTICLES -->
  43.     <section class="pt-7 pt-md-5">
  44.         <div class="container">
  45.             <div class="row align-items-center mb-5">
  46.                 <h3 class="mb-3">
  47.                     {{ post.title }}
  48.                 </h3>
  49.                 {% if faqs is not null %}
  50.                     {% for faq in faqs %}
  51.                         <div class="accordion" id="accordionExample{{ faq.id }}">
  52.                             <div class="accordion-item">
  53.                                 <h2 class="accordion-header d-grid gap-1 border-0 text-white" id="heading{{ faq.id }}">
  54.                                     <button class="btn btn-sm border-0 text-start text-white bg-warning " type="button" data-bs-toggle="collapse"
  55.                                             data-bs-target="#collapse{{ faq.id }}"
  56.                                             aria-expanded="{{ faq.id==1 ? 'true':'false' }}"
  57.                                             aria-controls="collapse{{ faq.id }}">
  58.                                         {{ faq.title }}
  59.                                     </button>
  60.                                 </h2>
  61.                                 <div id="collapse{{ faq.id }}"
  62.                                      class="accordion-collapse collapse {{ faq.id==1 ? 'show':'' }}"
  63.                                      aria-labelledby="heading{{ faq.id }}"
  64.                                      data-bs-parent="#accordionExample{{ faq.id }}">
  65.                                         <div class="accordion-body">
  66.                                             <div class="p-5">
  67.                                                 {{ faq.response|raw }}
  68.                                             </div>
  69.                                         </div>
  70.                                 </div>
  71.                             </div>
  72.                         </div>
  73.                     {% endfor %}
  74.                 {% endif %}
  75.             </div> <!-- / .row -->
  76.         </div> <!-- / .container -->
  77.     </section>
  78.     <!-- SHAPE -->
  79.     <div class="position-relative">
  80.         <div class="shape shape-bottom shape-fluid-x text-gray-200">
  81.             <svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/></svg>      </div>
  82.     </div>
  83. {% endblock %}