templates/page/page_show.html.twig line 1

Open in your IDE?
  1. {% extends 'compact_tpl.html.twig' %}
  2. {% set page_title = content.title %}
  3. {% if content.thumbnail is not null %}
  4.     {% set page_banner = content.thumbnail|imagine_filter('page_banner') %}
  5. {% endif %}
  6. {% block page_content %}
  7.     <div class="page-show">
  8.         <h2 class="page-title">{{ content.title }}</h2>
  9.         {{ content.body|raw }}
  10.     </div>
  11. {% endblock %}