templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="h-100" lang="uk">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.         <meta name="description" content="{% block description %}{% endblock %}">
  7.         <meta name="keywords" content="{% block keywords %}{% endblock %}">
  8.         <title>{% block title %}Реєстратура online{% endblock %}</title>
  9.         {% block google_analytics %}{% endblock %}
  10.         {% block stylesheets %}
  11.             <link rel="stylesheet" href="{{ asset('build/app.css') }}">
  12.         {% endblock %}
  13.         <link rel="icon" type="image/png" href="{{ asset('computer.png') }}" />
  14.     </head>
  15.     <body class="h-100">
  16.         {% block body %}{% endblock %}
  17.         {% block javascripts %}
  18.             <script src="{{ asset('build/app.js') }}"></script>
  19.         {% endblock %}
  20.     </body>
  21. </html>