templates/about_us/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ parent() }} - {{ title }}{% endblock %}
  3. {% block body %}
  4.     <div class='container-fluid bg-bandeau-qsn'></div>
  5.   <div class='container mx-auto'>
  6.         <h1 class='text-center my-5 py-5'>{{ title }}</h1>
  7.         <div class='d-flex flex-column align-items-center justify-content-center py-5'>
  8.             <div class='col-md-11 text_small_responsive'>
  9.              {% if text.isPublished is defined and text.isPublished is not null %}
  10.                  <div class='row'>
  11.                      <div class='col-md-5 bg-img-qsn'></div>
  12.                      <div class='col-md-7 text_extra_small px-5'>
  13.                          {{ text.content|raw }}
  14.                      </div>
  15.                  </div>
  16.        {% else %}
  17.          <h2>Dans très peu de temps ici il y aura un text</h2>
  18.        {% endif %}
  19.             </div>
  20.         </div>
  21.     </div>
  22. {% endblock %}