templates/front/page/page.html.twig line 1

Open in your IDE?
  1. {% extends 'base_front.html.twig' %}
  2. {% block body %}
  3.     <section class="bg-light-grey post-single">
  4.         <div class="text-center col-md-12 pt-5 pb-5">
  5.             <h2 class="red">{{ page.title }}</h2>
  6.         </div>
  7.         <div class="col-md-10 col-xl-8 m-auto d-flex justify-content-between single-post pt-5">
  8.             <div class="col-md-12 col-lg-6" id="postContent">
  9.                 {{ page.content|raw }}
  10.             </div>
  11.         </div>
  12.     </section>
  13. {% endblock %}