templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}Projet revendeur{% endblock %}</title>
  6.     {# Run `composer require symfony/webpack-encore-bundle`
  7.            and uncomment the following Encore helpers to start using Symfony UX #}
  8.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  9.     <script src="https://use.fontawesome.com/releases/v5.15.4/js/all.js" crossorigin="anonymous"></script>
  10.     <!-- Simple line icons-->
  11.     <link href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.5.5/css/simple-line-icons.min.css" rel="stylesheet" />
  12.     <!-- Google fonts-->
  13.     <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
  14.     <link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
  15.     <!-- Core theme CSS (includes Bootstrap)-->
  16.     {% block stylesheets %}
  17.         <link href="{{ asset('css/stylesmanage.css') }}" rel="stylesheet" />
  18.         {#{{ encore_entry_link_tags('app') }}#}
  19.     {% endblock %}
  20. </head>
  21. <body>
  22. <div>
  23.     {% block body %}
  24.         {%  include "navigation.html.twig" %}
  25.     {% endblock %}
  26. </div>
  27. </body>
  28. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
  29. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
  30. <!-- Bootstrap core JS-->
  31. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
  32. {% block javascripts %}
  33.     <script src="{{ asset('js/scriptsmanage.js') }}"></script>
  34.     {#{{ encore_entry_script_tags('app') }}#}
  35. {% endblock %}
  36. </html>