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

Open in your IDE?
  1. {% extends "front/base.html.twig" %}
  2. {% block title %}{{ "legal_notices.title" | trans }}
  3. {% endblock %}
  4. {% block body %}
  5. <div class="overflow-hidden fullheight">
  6.     <section class="mt-0 first-section">
  7.         <div class="container">
  8.             {% if info.title %}
  9.             <h2 class="section-title-underline">{{ info.title }}</h2>
  10.             {% else %}
  11.             <h2 class="section-title-underline">{{ ("footer." ~ title) | trans }}</h2>
  12.             {% endif %}
  13.             {% if info is empty %}
  14.                 <h3>{{ "legal_notice.pending" | trans }}</h3>
  15.             {% else %}
  16.                 {{ info.content | raw }}
  17.             {% endif %}
  18.         </div>
  19.     </section>
  20. </div>
  21. {% endblock %}