templates/front/pages/templates/default.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ page.metaTitle }} - {{ parent() }}{% endblock %}
  3. {% block meta_description %}{{ page.description }} - {{ sitename }}{% endblock %}
  4. {% block body %}
  5.     <div class="container pt-5">
  6.         <h1>{{ page.title }}</h1>
  7.         {{ page.content }}
  8.     </div>
  9. {% endblock %}