<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<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></svg>">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body onload="document.body.style.opacity='1'">
{% include "includes/header.html.twig" %}
<div class="container-fluid">
<div class="row mt-4 mb-4">
<div class="col-md-12">
<main>
{% for message in app.flashes('error') %}
<div class="alert alert-danger">
{{ message }}
</div>
{% endfor %}
{% block body %}{% endblock %}
</main>
</div>
{# <div class="block-right col-md-4 sidebar">#}
{# {% if tree is defined %}#}
{# <h3 class="pb-2 border-bottom">Category tree</h3>#}
{# {% include "blocks/block-right.html.twig" with {'tree':tree} %}#}
{# {% endif %}#}
{# </div>#}
</div>
<footer class="border-top p-4">
{# <h6 class="pb-2 border-bottom">Footer menu</h6>#}
{# <div style="font-size: 9px">#}
{# {{ knp_menu_render('footer') }}#}
{# </div>#}
</footer>
</div>
</body>
</html>