<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Bej Paris{% endblock %}</title>
{# Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX #}
{% block stylesheets %}
{# bootstrap #}
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
{# custom #}
<link rel="stylesheet" href="{{ asset('css/base_admin.css') }}">
{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
{% block javascripts %}
{#{{ encore_entry_script_tags('app') }}#}
{% endblock %}
</head>
<body>
<div class="container">
<div class="wrap">
{% block flash %}
{% for flash_message in app.session.flashbag.get('success') %}
<div class="alert alert-success" role="alert">
{{ flash_message }}
</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('info') %}
<div class="alert alert-info" role="alert">
{{ flash_message }}
</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('warning') %}
<div class="alert alert-danger" role="alert">
{{ flash_message }}
</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('danger') %}
<div class="alert alert-danger" role="alert">
{{ flash_message }}
</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('error') %}
<div class="alert alert-danger" role="alert">
{{ flash_message }}
</div>
{% endfor %}
{% endblock %}
{% block body %}{% endblock %}
<span class="center app_version">{{ 'app_admin.app_version'|trans }} {{ app_version }}</span>
</div>
</div>
</body>
</html>