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 %}Formulaire Alignoscope{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
  7.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.         {% block stylesheets %}
  10.             <link rel="stylesheet" href="/assets/css/bootstrap/bootstrap.min.css">
  11.             <!-- Font Awesome 6 -->
  12.             <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  13.             <!-- Custom Style -->
  14.             <link rel="stylesheet" href="/assets/css/style.css">
  15.             <!-- responsive -->
  16.             <link rel="stylesheet" href="/assets/css/responsive.css">
  17.             <!-- animation -->
  18.             <link rel="stylesheet" href="/assets/css/animation.css">
  19.             <style>
  20.                 .input-text {
  21.                     background-color: var(--secondary-color);
  22.                     width: 100%;
  23.                     resize: none;
  24.                     border: solid 2px transparent;
  25.                     padding: 5px 5px;
  26.                     transition: 0.5s;
  27.                     margin-bottom: 20px;
  28.                 }
  29.                 .rating-reveal{
  30.                     padding-bottom: 12px;
  31.                     padding-top: 12px;
  32.                 }
  33.             </style>
  34.         {% endblock %}
  35.         {% block javascripts %}
  36.             <!-- Bootstrap 5 -->
  37.             <script src="/assets/js/bootstrap/bootstrap.min.js"></script>
  38.             <!-- jQuery -->
  39.             <script src="/assets/js/jQuery/jquery-3.6.4.min.js"></script>
  40.             <!-- My JS -->
  41.             <script src="/assets/js/custom.js"></script>
  42.         {% endblock %}
  43.     </head>
  44.     <body>
  45.         {% block body %}{% endblock %}
  46.     </body>
  47. </html>