templates/new/index/page.html.twig line 1

Open in your IDE?
  1. {% extends 'new/base.html.twig' %}
  2. {% block title %}{{ page.seoTitle }}{% endblock %}
  3. {% block seoDescription %}{{ page.seoDescription  }}{% endblock %}
  4. {% block opengraph %}
  5.     <meta property="og:type" content="website">
  6.     <meta property="og:url" content="https://mosregco.ru{{ app.request.pathInfo }}">
  7.     <meta property="og:title" content="{{ page.seoTitle | raw }}">
  8.     <meta property="og:description" content="{{ page.seoDescription | raw }}">
  9. {% endblock %}
  10. {% block body %}
  11.     <div class="container" style="margin-top: 63px">
  12.         <h1 style="font-size: 30px">{{ page.title }}</h1>
  13.         <div class="mt100">
  14.             {{ page.content | raw }}
  15.         </div>
  16.     </div>
  17. {% endblock %}