templates/front/page/page.html.twig line 1

Open in your IDE?
  1. {% extends 'base_front.html.twig' %}
  2. {% block meta %}
  3.     <title>Bourg | {{ page.title }}</title>
  4.     {% if page.text is defined %}
  5.         <meta name="description" content="{{ page.text|striptags|slice(0,120) }}">
  6.     {% endif %}
  7. {% endblock %}
  8. {% block body %}
  9.     <section class="col-md-12 pl-5 cgu">
  10.         <div class="container">
  11.             <div class="title-page bg-blue d-flex gold pl-0">
  12.                 <img src="/img/icons/chevrons-right.svg" alt="chevrons droite">
  13.             </div>
  14.             <h1>{{ page.title }}</h1>
  15.             <div class="description pt-5 pb-5 white">
  16.                 {{ page.text|raw }}
  17.             </div>
  18.         </div>
  19.     </section>
  20. {% endblock %}