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 %}Déclaration LFPL{% endblock %}</title>
  6.     <link rel="icon" href="{{ asset('img/favicon.ico') }}"/>
  7.     
  8.     {% block stylesheets %}
  9.         {#{{ encore_entry_link_tags('app') }}#}
  10.     {% endblock %}
  11.     <!--Bootstrap CSS/JS/Icons-->
  12.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
  13.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
  14.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
  15.     <!--Bootstrap Table CSS/JS-->
  16.     <link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.18.3/dist/bootstrap-table.min.css">
  17.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  18.     <script src="https://unpkg.com/bootstrap-table@1.18.3/dist/bootstrap-table.min.js"></script>
  19.     <script src="https://unpkg.com/bootstrap-table@1.18.3/dist/locale/bootstrap-table-fr-FR.min.js"></script>
  20.     
  21.     <link href="https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap" rel="stylesheet">
  22.     <link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500&display=swap" rel="stylesheet">
  23.     <link href="https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,600&display=swap" rel="stylesheet">
  24.     <link rel="stylesheet" href="{{ asset('style/fonts/icomoon/style.css') }}">
  25.     <link rel="stylesheet" href="{{ asset('style/css/select2.min.css') }}">
  26.     <!--<link rel="stylesheet" href="{ { asset('style/css/bootstrap.min.css') }}">
  27.     <link rel="stylesheet" href="{ { asset('style/css/style.css') }}"-->
  28.   </head>
  29.   <body>
  30.     <style>
  31.       .btn-primary {
  32.         background-color: #325491;
  33.         border: 1px solid #325491;
  34.       }
  35.       .btn-primary:hover {
  36.         background-color: #416ea9;
  37.         border: 1px solid #416ea9;
  38.       }
  39.       .btn-primary:disabled {
  40.         background-color: #666666;
  41.         border: 1px solid #666666;
  42.       }
  43.       .btn-primary:focus {
  44.         background-color: #416ea9;
  45.         border: 1px solid #416ea9;
  46.       }
  47.       a, .link-primary {
  48.         color: #5271ff;
  49.       }
  50.       .btn-danger {
  51.         background-color: #d8171c;
  52.       }
  53.       .btn-danger:hover {
  54.         background-color: #e9171c;
  55.       }
  56.       .btn-circle {
  57.         width: 30px;
  58.         height: 30px;
  59.         padding: 6px 0px;
  60.         border-radius: 15px;
  61.         text-align: center;
  62.         font-size: 12px;
  63.         line-height: 1.42857;
  64.       }
  65.     </style>
  66.     
  67.     {% if app.user %}
  68.       {% include "nav.html.twig" %}
  69.     {% endif %}
  70.     
  71.     <div class="container py-4">
  72.       {% block body %}{% endblock %}
  73.     </div>
  74.     <script>
  75.       {% block javascripts %}{% endblock %}
  76.     </script>
  77.   </body>
  78. </html>