<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Flowy - Klient{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block stylesheets %}
{{ encore_entry_link_tags('client_css') }}
{% endblock %}
</head>
<body class="{{ bodyClass|default('app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show') }}">
{% block page %}
{% block header %}{% include 'client/base/_header.html.twig' %}{% endblock %}
{% block body %}
<div class="app-body">
{% block sidebar %}{% include 'client/base/_sidebar.html.twig' %}{% endblock %}
<main class="main p-4">
{% block content %}{% endblock %}
</main>
</div>
{% endblock %}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('client_js') }}
{% endblock %}
{% block flashes %}
<script type="text/javascript">
{% for type,flashes in app.flashes %}
{% for flash in flashes %}
$.notify({message: '{{ flash|trans }}'}, {type: '{{ type }}'});
{% endfor %}
{% endfor %}
</script>
{% endblock %}
</body>
</html>