templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %} Eresh - Цифровой ассистент маркетолога {% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ include('layouts/styles.html.twig') }}
  10.         {% endblock %}
  11.     </head>
  12.     <body  class="ltr app sidebar-mini light-mode">
  13.     <!-- GLOBAL-LOADER -->
  14.     <div id="global-loader">
  15.         <img src="{{absolute_url(asset('build/images/loader.svg'))}}" class="loader-img" alt="Loader">
  16.     </div>
  17.     <!-- /GLOBAL-LOADER -->
  18.     <!-- PAGE -->
  19.     <div class="page">
  20.         <div class="page-main">
  21.             <!-- APP-HEADER -->
  22.             {{ include('layouts/app-header.html.twig') }}
  23.             <!-- APP-HEADER CLOSED -->
  24.             <!-- APP-SIDEBAR -->
  25.             {{ include('layouts/app-sidebar.html.twig') }}
  26.             <!-- APP-SIDEBAR CLOSED-->
  27.             <!-- APP CONTENT -->
  28.             <div class="app-content main-content mt-0">
  29.                 <div class="side-app">
  30.                     <!-- CONTAINER -->
  31.                     <div class="main-container container-fluid">
  32.                         <!-- CONTENT -->
  33.                         {% block body %}
  34.                         {% endblock %}
  35.                         <!-- CONTENT CLOSED-->
  36.                     </div>
  37.                     <!-- CONTAINER END -->
  38.                 </div>
  39.             </div>
  40.             <!-- APP CONTENT CLOSED-->
  41.         </div>
  42.         <!-- COUNTRY-SELECTOR-MODAL -->
  43.         {{ include('layouts/modal.html.twig') }}
  44.         <!-- END COUNTRY-SELECTOR-MODAL -->
  45.         <!-- FOOTER -->
  46.         {{ include('layouts/footer.html.twig') }}
  47.         <!-- FOOTER CLOSED-->
  48.     </div>
  49.     {% block javascripts %}
  50.         {{ include('layouts/scripts.html.twig') }}
  51.     {% endblock %}
  52.     </body>
  53. </html>