<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{ 'app.name'|trans }} | {% block title %}{{ 'app.name'|trans }}{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.svg">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{{ encore_entry_link_tags('authentication') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>