templates/home/price.html.twig line 1

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