You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trial/app/templates/layout.html.twig

38 lines
1.2 KiB
Twig

<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<title>{% block title %}Trial app{% endblock %}</title>
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body class="d-flex flex-column h-100 m-0 p-0 w-100 bg-light">
<header class="p-3 text-bg-dark w-100">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-between">
<a href="{{ path('index') }}"
class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
<span class="fs-4">Home</span>
</a>
</div>
</div>
</header>
{% block body %}
{% endblock %}
<footer class="mt-auto bg-dark text-bg-dark py-2 footer">
<p class="text-center">© {{ date().format('Y') }} Trial app</p>
</footer>
</body>
</html>