<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>LokoLoko - {% block title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width">
<link rel="icon" href="{{ asset('assets/img/logo-wh.svg')}}">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" type="text/css" rel="stylesheet" />
<link href="{{ asset('assets/css/main.css')}}" type="text/css" rel="stylesheet" />
{# 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>
<section class="flashmessages">
{# read and display all flash messages #}
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="{{ label }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
</section>
<section class="wrapper">
{% block body %}{% endblock %}
</section>
</body>
</html>