templates/base.html.twig line 1

Open in your IDE?
  1. {# templates/base.html.twig #}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta charset="UTF-8" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <meta name="description" content="Alfred est une plateforme de monitoring de test fonctionnel. Alfred est un service de B/Acceptance. B/Acceptance est un cabinet pure player du test principalement orienté sur l'univers digital">
  8.     <title>{% block title %}Alfred{% endblock %}</title>
  9.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"/>
  10.     <link rel="icon" type="image/png" href="{{ asset('assets/images/icons/alfredCorp-icon.png') }}"/>
  11.     <!--===============================================================================================-->
  12.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/fonts/font-awesome-4.7.0/css/font-awesome.min.css') }}">
  13.     <!--===============================================================================================-->
  14.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/fonts/iconic/css/material-design-iconic-font.min.css') }}">
  15.     <!--===============================================================================================-->
  16.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/util.css') }}">
  17.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/main.css') }}">
  18.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/frontUnlogged.css') }}">
  19.     <!--===============================================================================================-->
  20.     <link rel="preconnect" href="https://fonts.gstatic.com">
  21.     <link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
  22.     <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap" rel="stylesheet">
  23.     {% block stylesheets %}{% endblock %}
  24. </head>
  25. <body id="{{ bodyBackgroundColor }}">
  26. {% block body %}{% endblock %} {% block javascripts %}{% endblock %}
  27. <!--===============================================================================================-->
  28. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  29. <script src="{{ asset('assets/js/main.js')}}" type="text/javascript"></script>
  30. </body>
  31. </html>