templates/home/post.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 }});">
  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.                     <!-- Text -->
  15.                 </div>
  16.             </div> <!-- / .row -->
  17.         </div> <!-- / .container -->
  18.     </section>
  19.     <!-- SHAPE -->
  20.     <div class="position-relative">
  21.         <div class="shape shape-bottom shape-fluid-x text-light">
  22.             <svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  23.                 <path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/>
  24.             </svg>
  25.         </div>
  26.     </div>
  27.   <div class="container">
  28.       <div class="row">
  29.           <nav aria-label="breadcrumb">
  30.               <ol class="breadcrumb breadcrumb-scroll">
  31.                   <li class="breadcrumb-item">
  32.                       <a class="text-gray-700" href="{{ path('home') }}">
  33.                           Accueil
  34.                       </a>
  35.                   </li>
  36.                   <li class="breadcrumb-item active" aria-current="page">
  37.                       {{ post.title }}
  38.                   </li>
  39.               </ol>
  40.           </nav>
  41.       </div>
  42.   </div>
  43.     <!-- ARTICLES -->
  44.     <section class="pt-7 pt-md-5">
  45.         <div class="container">
  46.             <div class="row">
  47.                 <div class="lead text-muted mb-0">
  48.                     {{ post.description|raw }}
  49.                 </div>
  50.                 {% if contentChildren(1) is not null %}
  51.                 {% for child in contentChildren(1) %}
  52.                     {% if  child.id % 2 == 0 %}
  53.                         <div class="col-12">
  54.                     <!-- Card -->
  55.                     <div class="card card-row shadow-light-lg mb-6 lift lift-lg">
  56.                         <div class="row gx-0">
  57.                             <a class="col-12 col-md-6 order-md-2 bg-cover card-img-end"
  58.                                style="background-image: url({{ child.image }});" href="#!">
  59.                                 <!-- Shape -->
  60.                                 <div class="shape shape-start shape-fluid-y text-white d-none d-md-block">
  61.                                     <svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg">
  62.                                         <path d="M0 0h62.759v172C38.62 384 112 517 112 517v173H0V0z"
  63.                                               fill="currentColor"/>
  64.                                     </svg>
  65.                                 </div>
  66.                             </a>
  67.                             <div class="col-12 col-md-6 order-md-1">
  68.                                 <!-- Body -->
  69.                                 <a class="card-body" href="#!">
  70.                                     <!-- Heading -->
  71.                                     <h3>
  72.                                        {{ child.title }}
  73.                                     </h3>
  74.                                     <!-- Text -->
  75.                                     <div class="mb-0 text-muted">
  76.                                         {{ child.description|raw }}
  77.                                     </div>
  78.                                 </a>
  79.                                 <!-- Meta -->
  80.                                 <a class="card-meta" href="#!">
  81.                                     <!-- Divider -->
  82.                                     <hr class="card-meta-divider">
  83.                                 </a>
  84.                             </div>
  85.                         </div> <!-- / .row -->
  86.                     </div>
  87.                 </div>
  88.                     {% else %}
  89.                         <div class="col-12">
  90.                             <!-- Card -->
  91.                             <div class="card card-row shadow-light-lg">
  92.                                 <div class="row gx-0">
  93.                                     <a class="col-12 col-md-6 bg-cover card-img-start" style="background-image: url({{ child.image }});" href="#!">
  94.                                         <!-- Image (placeholder) -->
  95.                                         <img src="{{ child.image }}" alt="..." class="img-fluid d-md-none invisible">
  96.                                         <!-- Shape -->
  97.                                         <div class="shape shape-end shape-fluid-y text-white d-none d-md-block">
  98.                                             <svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M116 0H51v172C76 384 0 517 0 517v173h116V0z" fill="currentColor"></path></svg>              </div>
  99.                                     </a>
  100.                                     <div class="col-12 col-md-6 order-md-1">
  101.                                         <!-- Body -->
  102.                                         <div class="card-body">
  103.                                             <blockquote class="blockquote mb-0 text-left">
  104.                                                 <!-- Heading -->
  105.                                                 <h3>
  106.                                                     {{ child.title }}
  107.                                                 </h3>
  108.                                                 <!-- Text -->
  109.                                                 <div class="mb-5 mb-md-7 text-muted">
  110.                                                     {{ child.description|raw }}
  111.                                                 </div>
  112.                                             </blockquote>
  113.                                         </div>
  114.                                     </div>
  115.                                 </div>
  116.                             </div>
  117.                         </div>
  118.                     {% endif %}
  119.                 {% endfor %}
  120.                 {% endif %}
  121.             </div> <!-- / .row -->
  122.         </div> <!-- / .container -->
  123.     </section>
  124.     <!-- SHAPE -->
  125.     <div class="position-relative">
  126.         <div class="shape shape-bottom shape-fluid-x text-gray-200">
  127.             <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>
  128.     </div>
  129. {% endblock %}