templates/base.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, initial-scale=1, shrink-to-fit=no">
  6.         <title>{% block title %}Добро пожаловать{% endblock %}</title>
  7.         {% block stylesheets %}
  8.             <link href="{{ asset('assets/css/main.css') }}" rel="stylesheet"/>
  9.             <style>
  10.                 .notifyjs-foo-base {
  11.                     background: #468847;
  12.                     padding: 5px;
  13.                     border-radius: 10px;
  14.                     display: flex;
  15.                     flex-direction: column;
  16.                 }
  17.                 @media (min-width: 455px) {
  18.                     .notifyjs-foo-base {
  19.                         width: 450px;
  20.                     }
  21.                 }
  22.                 .notifyjs-foo-base .title {
  23.                     margin: 10px;
  24.                     font-size: 12px;
  25.                     color: white;
  26.                     text-align: justify;
  27.                     font-weight: bold;
  28.                 }
  29.                 .notifyjs-foo-base .link {
  30.                     display: none;
  31.                 }
  32.                 .notifyjs-foo-base .buttons {
  33.                     display: flex;
  34.                     justify-content: space-between;
  35.                     width: 100%;
  36.                     padding: 5px;
  37.                     margin: 2px;
  38.                 }
  39.                 .notifyjs-foo-base .buttons .no {
  40.                     margin-left: auto;
  41.                 }
  42.                 .notifyjs-foo-base button {
  43.                     font-size: 12px;
  44.                     color: white;
  45.                 }
  46.                 .notifyjs-foo-error {
  47.                     background-color: #B94A48;
  48.                 }
  49.                 .notifyjs-foo-warning {
  50.                     background-color: #ff9200;
  51.                 }
  52.                 .notifyjs-foo-info {
  53.                     background-color: #3A87AD;
  54.                 }
  55.                 .notifyjs-foo-success {
  56.                     background-color: #468847;
  57.                 }
  58.                 .notifyjs-foo-base .buttons {
  59.                     justify-content: flex-end;
  60.                 }
  61.                 .notifyjs-foo-hide-yes .yes {
  62.                     display: none;
  63.                 }
  64.                 .notifyjs-foo-success .no {
  65.                     margin-left: auto;
  66.                 }
  67.                 .notification-count {
  68.                     position: absolute;
  69.                     top: -4px;
  70.                     right: -5px;
  71.                     padding: 0 5px;
  72.                     background-color: #f95000;
  73.                     color: white;
  74.                     border-radius: 50%;
  75.                     font-size: 14px;
  76.                 }
  77.             </style>
  78.         {% endblock %}
  79.         {{ include('area/common/noScriptBanner.html.twig') }}
  80.         {%  if yandex_metrika_enabled == true %}
  81.             <twig:YandexMetrika/>
  82.             <twig:VkPixel/>
  83.         {% endif %}
  84.     </head>
  85.     <body>
  86.         <div class="wrapper">
  87.             <div class="page">
  88.                 <header class="header auth" style="background-color: #132f3d">
  89.                     <div class="header-inner">
  90.                         <div class="header-block md-hidden">
  91.                             <a href="/" class="logo-block">
  92.                                 {% if siteGlobals.globals.service.code.value == 'notary' %}
  93.                                     <img src="{{ asset('assets/img/logo_brown.svg') }}" alt="" />
  94.                                 {% else %}
  95.                                     <img src="{{ asset('assets/notaryLandingPage2/img/logo.svg') }}" alt="" />
  96.                                 {% endif %}
  97.                             </a>
  98.                         </div>
  99.                         <div class="header-block md-visible">
  100.                             <a href="/" class="logo-block">
  101.                                 <img src="{{ asset('assets/img/logo-mobile.svg') }}" alt="">
  102.                             </a>
  103.                         </div>
  104.                     </div>
  105.                 </header>
  106.                 <div class="page-content">
  107.                     {% block body %}{% endblock %}
  108.                 </div>
  109.                 <div style="text-align: center">
  110.                     {% include('area/common/paymentInfo.html.twig') %}
  111.                 </div>
  112.             </div>
  113.         </div>
  114.         <script src="{{ asset('assets/js/jquery.min.js') }}"></script>
  115.         <script src="{{ asset('assets/js/scripts.js') }}"></script>
  116.         <script src="{{ asset('assets/js/sticky.min.js') }}"></script>
  117.         {% block javascripts %}{% endblock %}
  118.     </body>
  119. </html>