templates/base_front.html.twig line 1

  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <meta name="description" content="Responsive Admin Dashboard Template">
  8.     <meta name="keywords" content="admin,dashboard">
  9.     <meta name="author" content="stacks">
  10.     <!-- The above 6 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  11.     <!-- Title -->
  12.     <title>{% block title %}Bienvenue!{% endblock %}</title>
  13.     <!-- Styles -->
  14.     <link rel="preconnect" href="https://fonts.gstatic.com">
  15.     <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  16.     <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800&display=swap" rel="stylesheet">
  17.     <link href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp" rel="stylesheet">
  18.     <link href="/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  19.     <link href="/plugins/perfectscroll/perfect-scrollbar.css" rel="stylesheet">
  20.     <link href="/plugins/pace/pace.css" rel="stylesheet">
  21.     <link href="/plugins/highlight/styles/github-gist.css" rel="stylesheet">
  22.     <link rel="stylesheet" href="{{ asset('bundles/mercuryseriesflashy/css/flashy.css') }}">
  23.     <!-- Theme Styles -->
  24.     <link href="/css/main.min.css" rel="stylesheet">
  25.     <link href="/css/custom.css" rel="stylesheet">
  26.     <link rel="icon" type="image/png" sizes="32x32" href="/images/small-logo.png" />
  27.     <link rel="icon" type="image/png" sizes="16x16" href="/images/small-logo.png" />
  28.     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  29.     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  30.     <!--[if lt IE 9]>
  31.         <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  32.         <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  33.         <![endif]-->
  34. {% block stylesheets %}{% endblock %}
  35. </head>
  36. <body>
  37.         {% block body %} {% endblock %}    
  38.     <!-- Javascripts -->
  39.     <script src="/plugins/jquery/jquery-3.5.1.min.js"></script>
  40.     <script src="/plugins/bootstrap/js/popper.min.js"></script>
  41.     <script src="/plugins/bootstrap/js/bootstrap.min.js"></script>
  42.     <script src="/plugins/perfectscroll/perfect-scrollbar.min.js"></script>
  43.     <script src="/plugins/pace/pace.min.js"></script>
  44.     <script src="/plugins/highlight/highlight.pack.js"></script>
  45.     <script src="/js/main.min.js"></script>
  46.     <script src="/js/custom.js"></script>
  47.     <!-- Load Flashy default JavaScript -->
  48.     <script src="{{ asset('bundles/mercuryseriesflashy/js/flashy.js') }}"></script>
  49.     <!-- Include Flashy default partial -->
  50.     {{ include('@MercurySeriesFlashy/flashy.html.twig') }}
  51.     {% block javascripts %}{% endblock %}
  52. </body>
  53. </html>