templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <!-- Google Tag Manager -->
  5.     <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  6.     new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  7.     j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  8.     'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  9.     })(window,document,'script','dataLayer','GTM-TF2CF2JM');</script>
  10.     <!-- End Google Tag Manager -->
  11.     <meta charset="UTF-8">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  13.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
  14.     <title>
  15.         {% block title %}CumulSuccess |
  16.         {% endblock %}
  17.     </title>
  18.         <link rel="shortcut icon" href="{{ asset('favicon.ico') }}" type="image/x-icon" />
  19.         <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
  20.         <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png" />
  21.         <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png" />
  22.         <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png" />
  23.         <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png" />
  24.         <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png" />
  25.         <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png" />
  26.         <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png" />
  27.         <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png" />
  28.     <link href="https://cdn.jsdelivr.net/npm/aos@2.3.1/dist/aos.css" rel="stylesheet">
  29.     <script src="https://kit.fontawesome.com/66e8123cf2.js" crossorigin="anonymous"></script>
  30.     {% block stylesheets %}
  31.     {{ encore_entry_link_tags('app2scss') }}
  32.     {% endblock %}
  33.     {% block javascripts %}
  34.     {{ encore_entry_script_tags('app') }}
  35.     {{ encore_entry_script_tags('communityApp') }}
  36.     {{ encore_entry_script_tags('calculUserPointsApp') }}
  37.     {{ encore_entry_script_tags('calculUserActionsApp') }}
  38.     {{ encore_entry_script_tags('loaderUpload') }}
  39.     
  40.     {% endblock %}
  41. </head>
  42. <body>
  43.     <!-- Google Tag Manager (noscript) -->
  44.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TF2CF2JM"
  45.     height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  46.     <!-- End Google Tag Manager (noscript) -->
  47.     {% include "components/navbar.html.twig" %}
  48.     <div class="light-mode" id="demo3"> {% block body %}{% endblock %}
  49.         {% if app.request.attributes.get('_route') != 'app_me' %}
  50.         {% include "/components/footer.html.twig" with {'inverseFooterColor': true} %}
  51.         {% endif %}
  52.     </div>
  53.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
  54.     <script src="https://cdn.jsdelivr.net/npm/aos@2.3.1/dist/aos.js"></script>
  55.     <script>
  56.         AOS.init();
  57.     </script>
  58. </body>
  59. </html>