<!DOCTYPE html>
<html lang="{{ app.request.locale|split('_')[0] }}">
<head>
<title>
{% block title %}
{{ 'menu.brand'|trans }}
{% endblock %}
</title>
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
{% block alternates %}{% endblock %}
{% block stylesheets %}
<style>
body {
background-color: #f5f5f5 !important;
}
</style>
{{ encore_entry_link_tags('base') }}
{% endblock %}
</head>
<body>
{% block navbar %}{% endblock %}
{% block flash_messages %}
{% for type, messages in app.session.flashbag.all() %}
<div id="message-to-display-{{ type }}" data-type="{{ type }}" data="{{ messages|json_encode }}"></div>
{# {{ dump(type) }}#}
{# {{ dump(messages) }}#}
{# {% for message in messages %}#}
{# <div class="row alert alert-{{ type }} alert-dismissible fade show" role="alert">#}
{# <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>#}
{# {{ message | raw }}#}
{# </div>#}
{# {% endfor %}#}
{% endfor %}
{% endblock %}
{% block content %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('base') }}
{% endblock %}
</body>
</html>