templates/client/default/page.html.twig line 1

Open in your IDE?
  1. {% extends '/client/common/base.html.twig' %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block body %}
  4. <section class="uk-section uk-section-large">
  5.     <div class="uk-container">
  6.         <h1>{{ page.title }}</h1>
  7.         {{ page.content|raw }}
  8.     </div>
  9. </section>
  10. {% endblock %}