templates/headerbase.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  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="" />
  9.         <title>{% block title %}API-REST Media T{% endblock %}</title>
  10. {#
  11.         <link rel="apple-touch-icon"  href="/img/{{appliName|lower}}/favicon.png"/>
  12.         <link rel="icon"  href="/img/{{appliName|lower}}/favicon.png"/>
  13.         <link rel="icon"  href="{{ asset('img/favicon.png') }}"/>
  14. #}
  15.         {# Run `composer require symfony/webpack-encore-bundle`
  16.         and uncomment the following Encore helpers to start using Symfony UX #}
  17.         <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css">
  18.         <link rel="stylesheet" href="/css/styles.css">
  19.         {% block stylesheets %}
  20.         {#{{ encore_entry_link_tags('app') }}#}
  21.         {% endblock %}
  22.         
  23.         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"></script>
  24.         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
  25.         {% block javascripts %}
  26.         {#{{ encore_entry_script_tags('app') }}#}
  27.         {% endblock %}
  28.     </head>
  29.     <body class="nav-fixed">
  30.         {% block body %}
  31.         {% endblock %}
  32.     </body>
  33.         {% block javascripts_footer %}
  34.         {#{{ encore_entry_script_tags('app') }}#}
  35.         {% endblock %}
  36. </html>