templates/base.html.twig line 11

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  8.         {% endblock %}
  9.     </head>
  10.     <body>
  11.         {% if app.session is not null and app.session.started %}
  12.             {% set _flash_messages = app.session.flashbag.all %}
  13.             {% if _flash_messages|length > 0 %}
  14.                 <div id="flash-messages">
  15.                     {% for label, messages in _flash_messages %}
  16.                         {% for message in messages %}
  17.                             <div class="alert alert-{{ label }}">
  18.                                 {{ message|trans|striptags }}
  19.                             </div>
  20.                         {% endfor %}
  21.                     {% endfor %}
  22.                 </div>
  23.             {% endif %}
  24.         {% endif %}
  25.         {% block body %}{% endblock %}
  26.         {% block javascripts %}
  27.         {% endblock %}
  28.     </body>
  29. </html>