<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
{% block title %}Welcome!
{% endblock %}
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/favicon.png" type="image/png">
{# 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 class="{% block bodyClass %}{% endblock %}">
{% block header %}
{% include "_partial/header.html.twig" %}
{% endblock %}
{% block breadcrumb %}
{% include "_partial/breadcrumb.html.twig" %}
{% endblock %}
<div class="container"> {% block body %}{% endblock %}</div>
<div class="flashContainer">
{% for flash in app.flashes('notice') %}
<div class="flash">
<h3 class="flash__from">{{flash.from}}</h3>
<p class="flash__message">{{flash.message}}</p>
</div>
{% endfor %}
{% for flash in app.flashes('error') %}
<div class="flash error">
<h3 class="flash__from">{{flash.from}}</h3>
<p class="flash__message">{{flash.message}}</p>
</div>
{% endfor %}
</div>
</body>
</html>