templates/bundles/MLDevBaseBundle/layout/default.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="ru">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <link rel="shortcut icon" href="/images/favicons/favicon.ico">
  8.     {{ mldev_base_seo_info(page.seoInfo, page.name) }}
  9.     {# app css #}
  10.     <link rel="stylesheet" href="{{ asset('css/app.css') }}" />
  11. </head>
  12. <body>
  13.     <div class="app">
  14.         {# HEADER #}
  15.         {% include "@MLDevBase/layout/partials/header.html.twig" %}
  16.         {{ CONTENT|raw }}
  17.         {# HEADER FOOTER #}
  18.         {% include "@MLDevBase/layout/partials/footer.html.twig" %}
  19.     </div>
  20.     {# MODALS #}
  21.     {% include "@MLDevBase/layout/partials/modals.html.twig" %}
  22.     {# SCRIPTS #}
  23.     <script src="{{ asset('js/app.js') }}"></script>
  24.     {# COUNTERS BLOCK #}
  25.     {{ mldev_base_block('counters') |raw }}
  26. </body>
  27. </html>