26 lines
1.2 KiB
Twig
26 lines
1.2 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<meta name="description" content="{% block description %}{% endblock %}"/>
|
|
|
|
<link rel="icon" type="image/svg+xml" href="{{ asset('icons/favicon/icon.svg') }}"/>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('icons/favicon/apple-touch-icon.png') }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('icons/favicon/favicon-32x32.png') }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('icons/favicon/favicon-16x16.png') }}">
|
|
<link rel="manifest" href="{{ asset('/site.webmanifest') }}">
|
|
<link rel="mask-icon" href="{{ asset('/safari-pinned-tab.svg') }}" color="#000000">
|
|
<meta name="msapplication-TileColor" content="#000000">
|
|
<meta name="theme-color" content="#ffffff">
|
|
{{ encore_entry_link_tags('app') }}
|
|
{{ encore_entry_script_tags('theme') }}
|
|
{{ encore_entry_script_tags('app') }}
|
|
|
|
<title>{% block title %}Euph{% endblock %}</title>
|
|
</head>
|
|
<body class="bg-gray-100 dark:bg-gray-600">
|
|
{% include 'components/header.html.twig' %}
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|