templates/website/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2, user-scalable=no">
  6.     <title>{% block title %}Online Guide{% endblock %}</title>
  7.     {# Shared client-side i18n (EN/HY/RU) — loaded on every page, before any
  8.        page script, so window.t / TNT_I18N are always available. #}
  9.     <script src="{{ asset('js/tnt-i18n.js') }}"></script>
  10.     {% block stylesheets %}
  11.         <link rel="stylesheet" href="{{ asset('css/all.min.css') }}">
  12.         <link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
  13.         <link rel="stylesheet" href="{{ asset('css/owl.carousel.min.css') }}">
  14.         <link rel="stylesheet" href="{{ asset('css/font-awesome.css') }}">
  15.         <link rel="stylesheet" href="{{ asset('css/main.css') }}">
  16.     {% endblock %}
  17. </head>
  18. <body>
  19. {% block header %}
  20.     {% include('@web/parts/header.html.twig') %}
  21. {% endblock %}
  22. {% block body %}
  23.     <div id="content">
  24.         {% block content %}{% endblock %}
  25.     </div>
  26. {% endblock %}
  27. {% block footer %}
  28.     {% include('@web/parts/footer.html.twig') %}
  29. {% endblock %}
  30. {% block javascripts %}
  31.     <script src="{{ asset('js/jquery-3.4.1.min.js') }}"></script>
  32.     <script src="{{ asset('js/bootstrap.min.js') }}"></script>
  33.     <script src="{{ asset('js/bootstrap.bundle.min.js') }}"></script>
  34.     <script src="{{ asset('js/owl.carousel.min.js') }}"></script>
  35.     <script src="{{ asset('js/script.js') }}"></script>
  36. {% endblock %}
  37. </body>
  38. </html>