templates/Front/Page/page.html.twig line 1

Open in your IDE?
  1. {% extends "Global/layout.html.twig" %}
  2. {% set pagetitle = page.title %}
  3. {% block title %}{{pagetitle}}{% endblock %}
  4. {% block content %}
  5.     {% set navigation = [{"current": (pagetitle)}] %}
  6.     {% include "Global/navigation.html.twig" with navigation %}
  7.     <section class="section-content padding-y bg-white">
  8.         <div class="{{ services.getSetting("app_layout") }}">
  9.             <div class="row">
  10.                 <div class="col-sm-12">
  11.                     <div class="card box">
  12.                         <div class="card-body">
  13.                             {{ page.content|raw|nl2br }}
  14.                         </div>
  15.                     </div>
  16.                 </div>
  17.             </div>
  18.         </div>
  19.     </section>
  20. {% endblock %}