templates/webBase.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.         <title>{% block title %}Website{% endblock %}</title>
  6.         <meta name="description" content="{% block description %}Web{% endblock %}">
  7.         
  8.         <script src="{{ asset('assets/vendor/jquery/jquery.min.js') }}"></script>
  9.         <script src="{{ asset('assets/vendor/jquery.cycle.all.js') }}"></script>
  10.         <script language="JavaScript" src="{{ asset('assets/js/am.js') }}"></script>
  11.         <!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"> -->
  12.         <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/5.2.0/flatly/bootstrap.min.css">
  13.     </head>
  14.     <body>
  15.     {% for message in app.flashes('notice') %}
  16.         <div class="flash-notice">
  17.             <div class='notice'>{{ message }}</div>
  18.         </div>
  19.     {% endfor %}
  20.     {% for message in app.flashes('error') %}
  21.         <div class="flash-error">
  22.             <div class='error'>{{ message }}</div>
  23.         </div>
  24.     {% endfor %}
  25.         <div class="webWrapper">
  26.             {% block content %}{% endblock %}
  27.         </div>
  28.     </body>
  29. </html>