templates/front/page.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ page.titre }}{% endblock %}
  3. {% block style %}
  4.     <style>
  5.         .dynamiques-page .owl-carousel img { border-radius: 10px }
  6.         .dynamiques-page .owl-dots { display: flex; justify-content: center; position: relative; top: 20px; gap: 10px }
  7.         .dynamiques-page .owl-dot { width: 15px; height: 15px; border-radius: 50%; border:solid 1px #00b1ee; display:block; }
  8.         .dynamiques-page .owl-dot.active { background:#00b1ee }
  9.         @media (max-width: 768px) {
  10.             .bannier-blog { height:400px }
  11.         }
  12.         @media (max-width: 550px) {
  13.             .bannier-blog { height:300px }
  14.         }
  15.         @media (max-width: 400px) {
  16.             .bannier-blog { height:250px }
  17.         }
  18.     </style>
  19. {% endblock %}
  20. {% block banniere %}
  21. <section class="ban-section">
  22.     <div class="ban">
  23.         <img src="{{ asset(banniere ~ page.banniere) }}" alt="">
  24.         <div class="container">
  25.             <div class="sect-title text-center mb-0">
  26.                 <div class="h1 text-white">
  27.                     {{ page.getTextBanniere | raw }}
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </div>
  32. </section>
  33. {% endblock %}
  34. {% block contenu %}
  35. <section class=" pb-50 pt-45 dynamiques-page">
  36.     <div class=" container clearfix ">
  37.         <div class="sect-title text-center no-deco">
  38.             <h1>
  39.                 {{ page.titre }}
  40.             </h1>
  41.         </div>
  42.         <div class="bloc-text surf-text mb-55">
  43.             {{ page.contenu | raw }}
  44.         </div>
  45.     </div>
  46.     {% if page.section | length > 0 %}
  47.     <div class="container clearfix">
  48.         {% for section in page.section %}
  49.             {% if section.type == 1 %}
  50.             <div class="row align-items-center ">
  51.                 <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[0] }}{% else %}col-xl-5{% endif %} mb-50 wow slideInLeft">
  52.                     <div class="bloc-text">
  53.                         {{ section.contenu | raw }}
  54.                     </div>
  55.                 </div>
  56.                 <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[1] }}{% else %}col-xl-7{% endif %} mb-50 wow slideInRight">
  57.                     <div class="img-box-slide owl-carousel">
  58.                         {% for img in section.files %}
  59.                         <div><img src="{{ asset(page_directory ~ img) }}" alt=""></div>
  60.                         {% endfor %}
  61.                     </div>
  62.                 </div>
  63.             </div>
  64.             {% endif %}
  65.             {% if section.type == 2 %}
  66.                 <div class="row align-items-center ">
  67.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[0] }}{% else %}col-xl-7{% endif %} mb-50 wow slideInLeft">
  68.                         <div class="img-box-slide owl-carousel">
  69.                             {% for img in section.files %}
  70.                                 <div><img src="{{ asset(page_directory ~ img) }}" alt=""></div>
  71.                             {% endfor %}
  72.                         </div>
  73.                     </div>
  74.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[1] }}{% else %}col-xl-5{% endif %} mb-50 wow slideInRight">
  75.                         <div class="bloc-text">
  76.                             {{ section.contenu | raw }}
  77.                         </div>
  78.                     </div>
  79.                 </div>
  80.             {% endif %}
  81.             {% if section.type == 3 %}
  82.                 <div class="row align-items-center pb-xl-5">
  83.                     <div class="{% if (section.colonne is not null and section.colonne[0] is not empty) %}{{ section.colonne[0] }}{% else %}col-xl-6 col-12{% endif %} mb-50 order-xl-1 order-2" data-aos="fade-right" data-aos-delay="50" data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-once="true">
  84.                         <div class="img-cours">
  85.                             {% for img in section.files %}
  86.                             <img src="{{ asset(page_directory ~ img) }}" alt="">
  87.                             {% endfor %}
  88.                         </div>
  89.                     </div>
  90.                     <div class="{% if (section.colonne is not null and section.colonne[1] is not empty) %}{{ section.colonne[1] }}{% else %}col-xl-6 col-12{% endif %} mb-50 order-xl-2 order-1" data-aos="fade-left" data-aos-delay="50" data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-once="true">
  91.                         <div class="bloc-text">
  92.                             {{ section.contenu | raw }}
  93.                         </div>
  94.                     </div>
  95.                 </div>
  96.             {% endif %}
  97.             {% if section.type == 4 %}
  98.                 <div class="row align-items-center ">
  99.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[0] }}{% else %}col-xl-8{% endif %} mb-50 wow slideInLeft">
  100.                         <div class="bloc-text ml-auto">
  101.                             {{ section.contenu | raw }}
  102.                         </div>
  103.                     </div>
  104.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[1] }}{% else %}col-xl-4{% endif %} mb-50 wow slideInRight">
  105.                         <div class="img-intern" style="max-width: 100%;">
  106.                             {% for img in section.files %}
  107.                                 <div><img src="{{ asset(page_directory ~ img) }}" alt="" style="width: 100%"></div>
  108.                             {% endfor %}
  109.                         </div>
  110.                     </div>
  111.                 </div>
  112.             {% endif %}
  113.             {% if section.type == 5 %}
  114.                 <div class="row align-items-center ">
  115.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[0] }}{% else %}col-xl-8{% endif %} mb-50 wow slideInLeft">
  116.                         <div class="bloc-text iframe-hidden ml-auto">
  117.                             {{ section.contenu |replace({'sandbox=""': ""}) | raw }}
  118.                         </div>
  119.                     </div>
  120.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[1] }}{% else %}col-xl-4{% endif %} mb-50 wow slideInRight">
  121.                         {% if not (section.files is empty) %}
  122.                         <div class="img-video">
  123.                             <video width="100%" height="100%" controls>
  124.                                 <source src="{{ asset(page_directory ~ section.files[0]) }}" type="video/mp4">
  125.                                 Your browser does not support the video tag.
  126.                             </video>
  127.                         </div>
  128.                         {% endif %}
  129.                         {% if not (section.getIframe() is empty) %}
  130.                         <div class="img-video">
  131.                             {{ section.getIframe() |replace({'sandbox=""': ""}) | raw }}
  132.                         </div>
  133.                         {% endif %}
  134.                     </div>
  135.                 </div>
  136.             {% endif %}
  137.             {% if section.type == 6 %}
  138.                 <div class="row align-items-center ">
  139.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[0] }}{% else %}col-xl-4{% endif %} mb-50 wow slideInLeft">
  140.                         {% if not(section.files is empty) %}
  141.                         <div class="img-video">
  142.                             <video width="100%" height="100%" controls>
  143.                                 <source src="{{ asset(page_directory ~ section.files[0]) }}" type="video/mp4">
  144.                                 Your browser does not support the video tag.
  145.                             </video>
  146.                         </div>
  147.                         {% endif %}
  148.                         {% if not(section.getIframe() is empty) %}
  149.                         <div class="img-video mb-4">
  150.                             {{ section.getIframe() |replace({'sandbox=""': ""}) | raw }}
  151.                         </div>
  152.                         {% endif %}
  153.                     </div>
  154.                     <div class="{% if (section.colonne is not null and section.colonne | length >1) %}{{ section.colonne[1] }}{% else %}col-xl-8{% endif %} mb-50 wow slideInRight">
  155.                         <div class="bloc-text iframe-hidden mr-auto">
  156.                             {{ section.contenu |replace({'sandbox=""': ""}) | raw }}
  157.                         </div>
  158.                     </div>
  159.                 </div>
  160.             {% endif %}
  161.             {% if section.type == 7 %}
  162.                 <div class="text-center" data-aos="fade-up" data-aos-delay="50" data-aos-duration="800" data-aos-easing="ease-in-out" data-aos-once="true">
  163.                     {% for img in section.files %}
  164.                         <p><img src="{{ asset(page_directory ~ img) }}" alt="" style="border-radius:  10px 10px 0 0;"></p>
  165.                     {% endfor %}
  166.                 </div>
  167.                 <div class="bloc-text mb-5" style="max-width: 100%;">
  168.                     {{ section.contenu | raw }}
  169.                 </div>
  170.             {% endif %}
  171.             {% if section.type == 8 %}
  172.                 <div class="container wow fadeInUp">
  173.                     <div class="bloc-text blog-detail mb-5" style="max-width: 100%;">
  174.                         <!--<div class="img-video mb-4">
  175.                             <iframe width="420" height="315" src="https://www.youtube.com/embed/tgbNymZ7vqY?autoplay=0&mute=1">
  176.                             </iframe>
  177.                         </div>-->
  178.                         {% if not(section.files is empty) %}
  179.                         <div class="img-video text-center mb-4">
  180.                             <video width="900" height="100%" controls>
  181.                                 <source src="{{ asset(page_directory ~ section.files[0]) }}" type="video/mp4">
  182.                                 Your browser does not support the video tag.
  183.                             </video>
  184.                         </div>
  185.                         {% endif %}
  186.                         {% if not(section.getIframe() is empty) %}
  187.                         <div class="img-video text-center mb-4">
  188.                             {{ section.getIframe() |replace({'sandbox=""': ""}) | raw }}
  189.                         </div>
  190.                         {% endif %}
  191.                         <div class="iframe-hidden">
  192.                             {{ section.contenu |replace({'sandbox=""': ""}) | raw }}
  193.                         </div>
  194.                     </div>
  195.                 </div>
  196.             {% endif %}
  197.             {% if section.type == 9 %}
  198.                 <div class="container wow fadeInUp">
  199.                     <div class="img-box-slide owl-carousel mb-4">
  200.                         {% for img in section.files %}
  201.                             <div><img src="{{ asset(page_directory ~ img) }}" alt=""></div>
  202.                         {% endfor %}
  203.                     </div>
  204.                     <div class="bloc-text blog-detail mb-5" style="max-width: 100%;">
  205.                         {{ section.contenu | raw }}
  206.                     </div>
  207.                 </div>
  208.             {% endif %}
  209.         {% endfor %}
  210.     </div>
  211.     {% endif %}
  212. </section>
  213. {% endblock %}
  214. {% block a_voir %}
  215.     {% include 'front/formule.html.twig' %}
  216. {% endblock %}