templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}  {% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width,initial-scale=1">
  7.         {% block head__css %}
  8.             <link
  9.                     href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
  10.                     rel="stylesheet"
  11.             />
  12.             <link
  13.                     href="{{ asset('theme/mdb/css/mdb.dark.min.css') }}"
  14.                     rel="stylesheet"
  15.             />
  16.             <link
  17.                     href="{{ asset('theme/mdb/css/select2.css') }}"
  18.                     rel="stylesheet"
  19.             />
  20.             <link
  21.                     href="{{ asset('theme/mdb/css/easymde.css') }}"
  22.                     rel="stylesheet"
  23.             />
  24.             <link
  25.                     href="{{ asset('theme/mdb/css/jquery.dm-uploader.min.css') }}"
  26.                     rel="stylesheet"
  27.             />
  28.             <link
  29.                     href="{{ asset('theme/syntax/darkula.css') }}"
  30.                     rel="stylesheet"
  31.             />
  32.             <link
  33.                     type="image/jpg"
  34.                     href="{{ asset('favicon.ico') }}"
  35.                     rel="icon"
  36.             />
  37.             <link
  38.                     href="{{ asset('theme/custom/css/header.css') }}"
  39.                     rel="stylesheet"
  40.             />
  41.         {% endblock %}
  42.         {% block head__custom_css %}{% endblock %}
  43.     </head>
  44.     <body>
  45.         {% block header %}
  46.             {% if is_granted('IS_AUTHENTICATED_FULLY') %}
  47.                 {{ render(controller('\\App\\Action\\__Block\\HeaderAction', {})) }}
  48.             {% endif %}
  49.         {% endblock %}
  50.         {% block body %}{% endblock %}
  51.         {% block footer %}{% endblock %}
  52.     <footer class="bg-black text-center" style="padding: 20px;">
  53.         © Mirko (<a target="_blank" href="https://mirko.in.ua">https://mirko.in.ua</a>) 2022-2023, All right reserved.
  54.     </footer>
  55.     </body>
  56.     {% block footer_js %}
  57.         <script src="{{ asset('theme/mdb/js/mdb.min.js') }}"></script>
  58.         <script src="{{ asset('theme/mdb/js/jquery-3.6.1.min.js') }}"></script>
  59.         <script src="{{ asset('theme/mdb/js/select2.min.js') }}"></script>
  60.         <script src="{{ asset('theme/mdb/js/easymde.js') }}"></script>
  61.         <script src="{{ asset('theme/mdb/js/jquery.dm-uploader.min.js') }}"></script>
  62.         <script src="{{ asset('theme/custom/js/file-uploader.js') }}"></script>
  63.         <script src="{{ asset('theme/custom/js/component/post.js') }}"></script>
  64.         <script src="{{ asset('theme/custom/js/base.js') }}"></script>
  65.     {% endblock %}
  66. </html>