templates/base.html.twig line 1

Open in your IDE?
  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, shrink-to-fit=no">
  7.     <meta name="description" content="">
  8.     <meta name="author" content="Tanjona Rajaonasy, Acitf service">
  9.     <title>{% block title %} Dashboard Templates !{% endblock %}</title>
  10.     <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></svg>">
  11.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
  12.     {# CSS depuis Webpack Encore #}
  13.     {% block stylesheets %}
  14.         {{ encore_entry_link_tags('app') }}
  15.     {% endblock %}
  16. </head>
  17. <body id="page-top">
  18.     {% block body %}{% endblock %}
  19.     {# Bootstrap #}
  20.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
  21.     {# html2canvas ( pour capture image) #}
  22.     <script src="https://cdn.jsdelivr.net/npm/html2canvas@1.4.1/dist/html2canvas.min.js"></script>
  23.     {# JS principal (géré par Webpack Encore) #}
  24.     {% block javascripts %}
  25.         {{ encore_entry_script_tags('app') }}
  26.     {% endblock %}
  27. </body>
  28. </html>