<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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></svg>">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('css/global') }}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
<main>
{% if app.user is not null %}
<section id="wrap-left-menu">
{% include "common/left_menu.html.twig" %}
</section>
{% endif %}
<section id="main-body">
{% block body %}{% endblock %}
</section>
</main>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<script src="{{ asset('build/js/unocss/uno.rules.js') }}"></script>
<script src="{{ asset('build/js/unocss/uno.global.js') }}"></script>
{% endblock %}
</body>
</html>