templates/legal/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{page.translate(locale).title}}{% endblock %}
  3. {% block meta_desc %}{{page.translate(locale).introduction[:150]|striptags|raw }}...{% endblock %}
  4. {% block body %}
  5. {% include "components/areas/page/welcome.html.twig" %}
  6. <main class="legal-main">
  7.     <section class="page-header legal-header">
  8.         <div class="container">
  9.             <h2 class="page-header-title">{{page.translate(locale).title}}</h2>
  10.             <div class="outline"></div>
  11.             <div class="page-header-intro">{{page.translate(locale).introduction|raw}}</div>
  12.         </div>
  13.     </section>
  14.     <section class="page-content legal-content section-legal">
  15.         <div class="container wrap-content">
  16.             {{content.content|raw}}
  17.         </div>
  18.     </section>
  19. </main>
  20. {% endblock %}