Website/app/frontend/templates/base.html.twig
Snoweuph 2c1e057283
All checks were successful
Quality Check / QS Backend (push) Successful in 20s
Quality Check / QS Mixed (push) Successful in 33s
Quality Check / QS Frontend (push) Successful in 40s
Use Symfony UX Twig
2024-07-21 14:05:21 +02:00

28 lines
1.1 KiB
Twig

<!DOCTYPE html>
{% set logged_in = true %}
<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('app') }}
<title>{% block title %}Euph{% endblock %}</title>
</head>
<body>
<twig:Header/>
{% block body %}{% endblock %}
</body>
</html>