-
Notifications
You must be signed in to change notification settings - Fork 2
/
base.html.twig
31 lines (28 loc) · 992 Bytes
/
base.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/> {% block meta %}{% endblock %}
<title>
{% block title %}Welcome!
{% 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="no-js">
{% block header %}
{% include '@components/Layout/Header/Header.html.twig' with { type: "generic" } %}
{% endblock %}
{% block body %}{% endblock %}
{% block footer %}
{% include '@components/Layout/Footer/Footer.html.twig' %}
{% endblock %}
{% block modals %}{% endblock %}
</body>
</html>