22 lines
816 B
Twig
22 lines
816 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}MyE&P Team{% endblock %}</title>
|
|
<link rel="icon" href="{{ asset('favicon.ico') }}" sizes="any">
|
|
<link rel="icon" href="{{ asset('icon.svg') }}" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="{{ asset('apple-touch-icon.png') }}">
|
|
<link rel="manifest" href="{{ asset('site.webmanifest') }}">
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app') }}
|
|
{% endblock %}
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('app') }}
|
|
{% endblock %}
|
|
</head>
|
|
<body class="bg-white font-sans antialiased">
|
|
{% block body %}{% endblock %}
|
|
{% include '_partials/_flashes.html.twig' %}
|
|
</body>
|
|
</html>
|