templates\base.twig line 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/images/icon.png"/>
<title>VACAF</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% for link in encore_css %}
{{ encore_entry_link_tags(link) }}
{% endfor %}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% for script in encore_js %}
{{ encore_entry_script_tags(script) }}
{% endfor %}
{% endblock %}
</head>
<body>
{% include 'top.twig' %}
{% include 'ariane.twig' %}
{% block body %}{% endblock %}
{% include 'bottom.twig' %}
</body>
</html>