templates/frontend/legal.html.twig line 1

Open in your IDE?
  1. {% extends 'frontend/base.html.twig' %}
  2. {% block body %}
  3.     {% include 'frontend/partials/_breadcrumb.html.twig' %}
  4.     <section class="space-2 space-lg-3">
  5.         <div class="container">
  6.             <h1 class="h2 space-bottom-1">{{ pageTitle() }}</h1>
  7.             <div>
  8.                 {{ legal.content|block_editor_render }}
  9.             </div>
  10.         </div>
  11.     </section>
  12. {% endblock %}