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 %}Api2CSV{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             <link rel="stylesheet" href="{{ asset('css/styles.css') }}">
  10.             <link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}">
  11.             {{ encore_entry_link_tags('app') }}
  12.         {% endblock %}
  13.         {% block javascripts %}
  14.             {{ encore_entry_script_tags('app') }}
  15.         {% endblock %}
  16.         {% block refresh %}
  17.         {%  endblock %}
  18.     </head>
  19.     <body>
  20.         {% block body %}
  21.             {% for message in app.flashes('success') %}
  22.                 <div class="alert alert-success">
  23.                     {{ message }}
  24.                 </div>
  25.             {% endfor %}
  26.             {% for message in app.flashes('error') %}
  27.                 <div class="alert alert-danger">
  28.                     {{ message }}
  29.                 </div>
  30.             {% endfor %}
  31.         {% endblock %}
  32.     </body>
  33. </html>