You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
691 B
23 lines
691 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
<link rel="icon" href="{{ asset('images/icon.png') }}">
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app') }}
|
|
<link href="{{ asset('styles/web_style.css') }}" rel="stylesheet"/>
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{% block importmap %}{{ importmap('app') }}{% endblock %}
|
|
{{ encore_entry_script_tags('app') }}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body %}
|
|
{% include "header.html.twig" %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|