{% extends 'base.html.twig' %}
{% block title %}Enviškody{% endblock %}
{# % block description %}INFORMAČNÝ SYSTÉM PREVENCIE A NÁPRAVY ENVIRONMENTÁLNYCH ŠKÔD{% endblock %}
{% block keywords %}INFORMAČNÝ SYSTÉM, PREVENCIE A NÁPRAVY, ENVIRONMENTÁLNYCH, register, ŠKÔD, enviskody, enviroskody{% endblock % #}
{% block stylesheets %}{{ parent() }}{% endblock %}
{% block body %}
<section class="default-section">
<div class="container" id="page_content">
<header>
<h1 class="mb-4">{% block header %}Enviškody{% endblock %}</h1>
</header>
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="alert alert-{{ label }} alert-dismissible fade show" role="alert">
<p class="m-0">{{ message | alert_mess | raw }}</p>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
{% endfor %}
<div class="w-100"></div>
{% block content %}
<div class="w-100">Obsah stranky</div>
{% endblock %}
</div>
</section>
{% endblock %}
{% block javascripts %}{{ parent() }}{% endblock %}