<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
{% endblock %}
</head>
<body>
{% if app.session is not null and app.session.started %}
{% set _flash_messages = app.session.flashbag.all %}
{% if _flash_messages|length > 0 %}
<div id="flash-messages">
{% for label, messages in _flash_messages %}
{% for message in messages %}
<div class="alert alert-{{ label }}">
{{ message|trans|striptags }}
</div>
{% endfor %}
{% endfor %}
</div>
{% endif %}
{% endif %}
{% block body %}{% endblock %}
{% block javascripts %}
{% endblock %}
</body>
</html>