{% filter spaceless %}
{% set mainClass='col-12' %}
{% set showNavbars=false %}
{% if showNavbars() %}
{% set mainClass='col-md-9 ml-sm-auto col-lg-10 pt-3 px-4' %}
{% set showNavbars=true %}
{% endif %}
<!DOCTYPE html>
<html lang="{{ getCurrentLocale() }}" class="{{ htmlClass|default('') }}">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<meta name="robots" content="noindex,nofollow">
<link rel="icon" type="image/png" href="{{ asset('build/images/favicon.png') }}"/>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body class="{% block body_class %}{% endblock %}">
{% if showNavbars %}
{% include "navbar.html.twig" %}
{% endif %}
<div class="container-fluid">
<div class="row">
{% if showNavbars %}
{% include "sidebar.html.twig" %}
{% endif %}
<main class="{{ mainClass }}">
{% if showNavbars %}
{% include "breadcrum.html.twig" %}
{% endif %}
{% block body %}{% endblock %}
</main>
</div>
</div>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>
{% endfilter %}