templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>
  6.             {% block title %}Sulser Group
  7.             {% endblock %}
  8.         </title>
  9.         {% block stylesheets %}
  10.             <link href="https://cdnjs.cloudflare.com/ajax/libs/vuetify/2.0.11/vuetify.min.css" rel="stylesheet">
  11.             <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
  12.             <link href="https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css" rel="stylesheet">
  13.             <link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
  14.             <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css">
  15.             <link
  16.                 rel="stylesheet"
  17.                 href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css"
  18.             />
  19.             {{ encore_entry_link_tags('app') }}
  20.         {% endblock %}
  21.     </head>
  22.     <body>
  23.         {% block navbar %}
  24.             {% include 'navbar.html.twig' %}
  25.         {% endblock %}
  26.         {% block flashes %}
  27.             {% for message in app.flashes('success') %}
  28.                 <div class="alert alert-success">
  29.                     {{ message }}
  30.                 </div>
  31.             {% endfor %}
  32.             {% for message in app.flashes('error') %}
  33.                 <div class="alert alert-danger">
  34.                     {{ message }}
  35.                 </div>
  36.             {% endfor %}
  37.         {% endblock %}
  38.         {% block body %}{% endblock %}
  39.         {% block javascripts %}
  40.             {{ encore_entry_script_tags('app') }}
  41.             <script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/intlTelInput.min.js"></script>
  42.         {% endblock %}
  43.     </body>
  44. </html>