templates/default/base_default.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Enviškody{% endblock %}
  3. {# % block description %}INFORMAČNÝ SYSTÉM PREVENCIE A NÁPRAVY ENVIRONMENTÁLNYCH ŠKÔD{% endblock %}
  4. {% block keywords %}INFORMAČNÝ SYSTÉM, PREVENCIE A NÁPRAVY, ENVIRONMENTÁLNYCH, register, ŠKÔD, enviskody, enviroskody{% endblock % #}
  5. {% block stylesheets %}{{ parent() }}{% endblock %}
  6. {% block body %}
  7.     <section class="default-section">
  8.         <div class="container" id="page_content">
  9.             <header>
  10.                 <h1 class="mb-4">{% block header %}Enviškody{% endblock %}</h1>
  11.             </header>
  12.             {% for label, messages in app.flashes %}
  13.                 {% for message in messages %}
  14.                     <div class="alert  alert-{{ label }} alert-dismissible fade show" role="alert">
  15.                         <p class="m-0">{{ message | alert_mess | raw }}</p>
  16.                         <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  17.                             <span aria-hidden="true">&times;</span>
  18.                         </button>
  19.                     </div>
  20.                 {% endfor %}
  21.             {% endfor %}
  22.             <div class="w-100"></div>
  23.             {% block content %}
  24.                 <div class="w-100">Obsah stranky</div>
  25.             {% endblock %}
  26.         </div>
  27.     </section>
  28. {% endblock %}
  29. {% block javascripts %}{{ parent() }}{% endblock %}