<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Predator Cup{% endblock %}</title>
<link rel="shortcut icon" type="image/png" href="{{ asset('images/favicon-32x32.png') }}">
<link rel="shortcut icon" sizes="32x32" href="{{ asset('images/favicon-32x32.png') }}">
<link rel="apple-touch-icon" href="{{ asset('images/favicon-32x32.png') }}">
<link rel="stylesheet" href="{{ asset('css/font-awesome.min.css') }}">
{% block stylesheets %}
<link href="{{ asset('css/bootstrap-5.1.3.min.css') }}" rel="stylesheet">
{% endblock %}
<link rel="stylesheet" href="{{ asset('css/typo.css') }}">
<link rel="stylesheet" href="{{ asset('css/main.css') }}">
<script src="{{ asset('js/bootstrap-5.1.3.min.js') }}"></script>
<script src="{{ asset('js/font-awesome.min.js') }}"></script>
</head>
<body>
{% include 'menu.html.twig' %}
{% block body %}{% endblock %}
</body>
</html>