templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>{% block title %}Predator Cup{% endblock %}</title>
  7.         <link rel="shortcut icon" type="image/png" href="{{ asset('images/favicon-32x32.png') }}">
  8.         <link rel="shortcut icon" sizes="32x32" href="{{ asset('images/favicon-32x32.png') }}">
  9.         <link rel="apple-touch-icon" href="{{ asset('images/favicon-32x32.png') }}">
  10.         <link rel="stylesheet" href="{{ asset('css/font-awesome.min.css') }}">
  11.         {% block stylesheets %}
  12.             <link href="{{ asset('css/bootstrap-5.1.3.min.css') }}" rel="stylesheet">
  13.         {% endblock %}
  14.         <link rel="stylesheet" href="{{ asset('css/typo.css') }}">
  15.         <link rel="stylesheet" href="{{ asset('css/main.css') }}">
  16.         <script src="{{ asset('js/bootstrap-5.1.3.min.js') }}"></script>
  17.         <script src="{{ asset('js/font-awesome.min.js') }}"></script>
  18.     </head>
  19.     <body>
  20.     {% include 'menu.html.twig' %}
  21.         {% block body %}{% endblock %}
  22.     </body>
  23. </html>