templates/page/view.html.twig line 1

Open in your IDE?
  1. {% extends "base_app.html.twig" %}
  2. {% block body_id %}{{ basePage.slug }}{% endblock %}
  3. {% block title %}{{ basePage.title }}{% endblock %}
  4. {% block body_class 'page-list' %}
  5. {% block page_header %}
  6.     {% embed 'partials/layout/_page_header.html.twig' %}
  7.         {% block title %}{{ basePage.title }}{% endblock %}
  8.     {% endembed %}
  9. {% endblock %}
  10. {% block main %}
  11.     <div class="editor-content">{{ basePage.body|raw }}</div>
  12. {% endblock %}