<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="{{ asset('build/images/favicon.png') }}"/>
<title>
{% block title %}
{{ "layout.title" | trans }}
{% endblock %}
</title>
{% block stylesheets %}
{{ encore_entry_link_tags("app") }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags("app") }}
{% endblock %}
</head>
{% block body %}
<body class="sidebar-mini layout-fixed layout-navbar-fixed">
<div class="wrapper">
{% block navbar %}
{% include '_navbar.html.twig' %}
{% endblock %}
{% block sidebar %}
{% include '_sidebar.html.twig' %}
{% endblock %}
<div class="content-wrapper" style="min-height: 855px">
<section class="content-header"></section>
<section class="content">
<div class="container-fluid">
{% block content %}{% endblock %}
</div>
</section>
</div>
</div>
</body>
{% endblock %}
{% block alerts %}
{% include '_alerts.html.twig' %}
{% endblock %}
</html>