templates/base.html.twig line 1

Open in your IDE?
  1. {% if locale is not defined or locale is null %}
  2.     {% set locale = 'en' %}
  3. {% endif %}
  4. <!DOCTYPE html>
  5. <html lang="en">
  6.     <head>
  7.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  8.         <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
  9.         <meta name="description" content="" />
  10.         <title>{% block title %}Welcome!{% endblock %}</title>
  11.         <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  12.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  13.         <!-- CSS only -->
  14.         <!-- JavaScript Bundle with Popper -->
  15.         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
  16.         {% block stylesheets %}{% endblock %}
  17.     </head>
  18.     <body>
  19.         {% block body %}{% endblock %}
  20.         {% block javascripts %}{% endblock %}
  21.     </body>
  22. </html>