clients/ambs-conseil.fr/templates/base.html.twig line 1

Open in your IDE?
  1. {% extends 'superbase.html.twig' %}
  2. {% block meta_description %}{% endblock %}
  3. {% block title %}Bonjour {{ accountingFirm.name }}{% endblock %}
  4. {% block author %}{{ cabinet.name | capitalize }}{% endblock %}
  5. {% block stylesheets %}
  6.     {% if accountingFirm.parameters.favicon!=null %}
  7.         <link rel='icon' type='image/x-icon' href="{{ asset_client(accountingFirm,'/images/'~accountingFirm.parameters.favicon) }}">
  8.     {% endif %}
  9.     <!-- bootstrap css -->
  10.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/bootstrap.min.css') }}">
  11.     <!-- swiper css -->
  12.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/swiper-bundle.min.css') }}">
  13.     <!-- nice-select css -->
  14.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/nice-select.css') }}">
  15.     <!-- fontawesome css -->
  16.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/all.css') }}">
  17.     <!-- magnific-popup css -->
  18.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/magnific-popup.css') }}">
  19.     <!-- sal css -->
  20.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/sal.css') }}">
  21.     <!-- jarallax -->
  22.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/plugins/jarallax.min.css') }}">
  23.     <!-- style css -->
  24.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, 'css/style.css') }}">
  25.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, "css/agex.css") }}">
  26.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, "css/agex_footer.css") }}">
  27.     <link rel="stylesheet" href="{{ assets_client(accountingFirm, "css/fontawesome.css") }}">
  28.     <style>
  29.         :root {
  30.             --agex-primary: #3e66f3;
  31.             --agex-secondary: #0a1834;
  32.         }
  33.     </style>
  34. {% endblock %}
  35. {% block javascripts_recaptcha %}
  36. {%if accountingFirm.parameters.getGOOGLERECAPTCHASITEKEY!=null and accountingFirm.parameters.getGOOGLERECAPTCHASITEKEY!=null %}
  37.  <script type="text/javascript">
  38.      function onGoogleReCaptchaApiLoad() {
  39.             var widgets = document.querySelectorAll('[data-toggle="recaptcha"]');
  40.             for (var i = 0; i < widgets.length; i++) {
  41.                 renderReCaptcha(widgets[i]);
  42.             }
  43.         }
  44.                 function getSubmitButtons(form) {
  45.                     var buttons = form.querySelectorAll('button, input');
  46.                     var submitButtons = [];
  47.                     for (var i= 0; i < buttons.length; i++) {
  48.                         var button = buttons[i];
  49.                         if (button.getAttribute('type') == 'submit') {
  50.                             submitButtons.push(button);
  51.                         }
  52.                     }
  53.                     return submitButtons;
  54.                 }
  55.                 function bindChallengeToSubmitButtons(form, reCaptchaId) {
  56.                     getSubmitButtons(form).forEach(function (button) {
  57.                         button.addEventListener('click', function (e) {
  58.                             e.preventDefault();
  59.                             grecaptcha.execute(reCaptchaId);
  60.                         });
  61.                     });
  62.                 }
  63.                 function renderReCaptcha(widget) {
  64.                     var form = widget.closest('form');
  65.                     var widgetType = widget.getAttribute('data-type');
  66.                     var widgetParameters = {
  67.                         'sitekey': '{{ accountingFirm.parameters.getGOOGLERECAPTCHASITEKEY }}'
  68.                     };
  69.                     if (widgetType == 'invisible') {
  70.                         widgetParameters['callback'] = function () {
  71.                             form.submit()
  72.                         };
  73.                         widgetParameters['size'] = "invisible";
  74.                     }
  75.                     var widgetId = grecaptcha.render(widget, widgetParameters);
  76.                     if (widgetType == 'invisible') {
  77.                         bindChallengeToSubmitButtons(form, widgetId)
  78.                     }
  79.                 }
  80.                 function onGoogleReCaptchaLoad() {
  81.                     var widgets = document.querySelectorAll('[data-toggle="recaptcha"]');
  82.                     for (var i = 0; i < widgets.length; i++) {
  83.                         renderReCaptcha(widgets[i]);
  84.                     }
  85.                 }
  86.             </script>
  87.     <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?onload=onGoogleReCaptchaApiLoad&render=explicit&hl={{app.request.locale}}" async defer></script>
  88.     {% endif %}
  89. {% endblock %}
  90. {% block header %}
  91.     <!-- preloader -->
  92.     <div class="preloader">
  93.         <div class="loading-container">
  94.             <div class="loading"></div>
  95.             <div id="loading-icon"><img class="img-fluid" src="{{ assets_client(accountingFirm, 'img/AMBS/AMBS-favicon.svg') }}" alt=""></div>
  96.         </div>
  97.     </div>
  98.     <a href="tel:0688754494" class="phone-bt-support-now phone-theme-btn">
  99.         <svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 512 512">
  100.             <!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.-->
  101.             <path
  102.                 d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"></path>
  103.         </svg>
  104.         <span>06 88 75 44 94</span>
  105.     </a>
  106.     <div class="header-top">
  107.         <div class="container-fluid">
  108.             <div class="d-flex justify-content-between align-items-center">
  109.                 <div class="container-actualite-defilante">
  110.                     {{ actualite_defilante(cabinet) }}
  111.                 </div>
  112.                 <div class="menu">
  113.                     <ul class="d-xl-flex flex-nowrap d-none">
  114.                         <li class="">
  115.                             <a href="{{ path('client_custom_page', {'uri': 'cabinet'}) }}">
  116.                                 <i class="fa-duotone fa-home"></i>
  117.                                 Cabinet
  118.                             </a>
  119.                         </li>
  120.                         <li class="">
  121.                             <a href="{{ path('client_custom_page', {'uri': 'facture-electronique'}) }}">
  122.                                 <i class="fa-duotone fa-file-invoice"></i>
  123.                                 Facturation électronique
  124.                             </a>
  125.                         </li>
  126.                         <li class="">
  127.                             <a href="" onclick="" target="_blank">
  128.                                 <i class="fa-duotone fa-calendar"></i>
  129.                                 RDV en ligne
  130.                             </a>
  131.                         </li>
  132.                         <li class="">
  133.                             <a href="" target="_blank">
  134.                                 <i class="fa-duotone fa-users"></i>
  135.                                 Accès client
  136.                             </a>
  137.                         </li>
  138.                     </ul>
  139.                 </div>
  140.             </div>
  141.         </div>
  142.     </div>
  143.     <!--================= Header section start =================-->
  144.     <header>
  145.         <div id="vl-header-sticky" class="vl-header-area vl-header-area-3 vl-transparent-header">
  146.             <div class="container-fluid header-bg-3 vkl-gray-bg-4">
  147.                 <div class="d-flex justify-content-between align-items-center gap-2">
  148.                     <div class="">
  149.                         <div class="vl-logo">
  150.                             <a href="{{ path('client') }}"><img src="{{ assets_client( accountingFirm,"img/AMBS/AMBS_header.svg")}}" alt=""></a>
  151.                         </div>
  152.                     </div>
  153.                     <div class="d-none d-xl-block">
  154.                         <div class="vl-main-menu text-center">
  155.                             <nav class="vl-mobile-menu-active">
  156.                                 <ul>
  157.                                     <li><a href="{{ path('client_custom_page', {'uri': 'createur'}) }}">JE CRÉE MON ENTREPRISE</a></li>
  158.                                     <li class="has-dropdown">
  159.                                         <a href="{{ path('client_custom_page', {'uri': 'expertises'}) }}">JE RÉUSSIS MON DÉVELOPPEMENT <span class="downarrow"><i class="fa-solid fa-angle-down"></i></span></a>
  160.                                         <ul class="sub-menu">
  161.                                             <li><a href="{{ path('client_custom_page', {'uri': 'expertise-comptabilite'}) }}">Comptabilité</a></li>
  162.                                             <li><a href="{{ path('client_custom_page', {'uri': 'expertise-fiscal'}) }}">Fiscalité</a></li>
  163.                                             <li><a href="{{ path('client_custom_page', {'uri': 'expertise-social'}) }}">Sociale</a></li>
  164.                                             <li><a href="{{ path('client_custom_page', {'uri': 'expertise-juridique'}) }}">Juridique</a></li>
  165.                                         </ul>
  166.                                     </li>
  167.                                     <li><a href="{{ path('client_custom_page', {'uri': 'pilotage'}) }}">JE PILOTE MON ACTIVITÉ</a></li>
  168.                                     <li><a href="{{ path('client_custom_page', {'uri': 'dirigeant'}) }}">J'OPTIMISE MA SITUATION</a></li>
  169.                                     <li><a href="{{ path('client_custom_page', {'uri': 'international'}) }}">International</a></li>
  170.                                 </ul>
  171.                             </nav>
  172.                         </div>
  173.                     </div>
  174.                     <div class="">
  175.                         <div class="vl-header-right">
  176.                             <!-- header btn -->
  177.                             <div class="vl-header-btn-2 d-none d-xl-block">
  178.                                 <a href="{{ path('client_contact') }}" class="vl-primary-btn vl-primary-btn">Contact</a>
  179.                             </div>
  180.                         </div>
  181.                         <!-- action btn -->
  182.                         <div class="vl-header-action-item d-block d-xl-none">
  183.                             <button type="button" class="vl-offcanvas-toggle">
  184.                                 <svg xmlns="http://www.w3.org/2000/svg" width="30" height="16" viewBox="0 0 30 16">
  185.                                     <rect x="10" width="20" height="2" fill="currentColor"></rect>
  186.                                     <rect x="5" y="7" width="25" height="2" fill="currentColor"></rect>
  187.                                     <rect x="10" y="14" width="20" height="2" fill="currentColor"></rect>
  188.                                 </svg>
  189.                             </button>
  190.                         </div>
  191.                     </div>
  192.                 </div>
  193.             </div>
  194.         </div>
  195.     </header>
  196.     <!-- offcanvas menu start -->
  197.     <div class="vl-offcanvas">
  198.         <div class="vl-offcanvas-wrapper">
  199.             <div class="vl-offcanvas-header d-flex justify-content-between align-items-center mb-50">
  200.                 <div class="vl-offcanvas-logo">
  201.                     <a href="{{ path('client') }}"><img src="{{ assets_client(accountingFirm, 'img/AMBS/AMBS_header.svg') }}" alt=""></a>
  202.                 </div>
  203.                 <div class="vl-offcanvas-close">
  204.                     <button class="vl-offcanvas-close-toggle"><i class="fal fa-times"></i></button>
  205.                 </div>
  206.             </div>
  207.             <div class="vl-offcanvas-menu d-lg-block mb-40">
  208.                 <nav></nav>
  209.             </div>
  210.             <div class="vl-offcanvas-header-top d-flex d-xl-none flex-column mb-40">
  211.                 <a href="{{ path('client_custom_page', {'uri': 'cabinet'}) }}">
  212.                     <i class="fa-duotone fa-home"></i> CABINET
  213.                 </a>
  214.                 <a href="{{ path('client_custom_page', {'uri': 'facture-electronique'}) }}">
  215.                     <i class="fa-duotone fa-file-invoice"></i> FACTURATION ÉLECTRONIQUE
  216.                 </a>
  217.                 <a href="" onclick="" target="_blank">
  218.                     <i class="fa-duotone fa-calendar"></i> RDV EN LIGNE
  219.                 </a>
  220.                 <a href="" target="_blank">
  221.                     <i class="fa-duotone fa-users"></i> ACCÈS CLIENT
  222.                 </a>
  223.             </div>
  224.         </div>
  225.     </div>
  226.     <div class="vl-offcanvas-overlay"></div>
  227.     <!-- offcanvas menu end -->
  228.     <!--================= Header section End =================-->
  229. {% endblock %}
  230. {% block body %}{% endblock %}
  231. {% block footer %}
  232.     <footer class="agex_footer">
  233.         <div class="container">
  234.             <div class="footer-top border-bottom">
  235.                 <div class="row">
  236.                     <div class="col-lg-9 col-12 pr-30 border-right">
  237.                         <div class="row align-items-center">
  238.                             <div class="col-md-4 col-12 col-sm-6">
  239.                                 <img src="{{ assets_client(accountingFirm, 'img/AMBS/AMBS_footer.svg') }}" class="img-fluid mb-3 mb-md-0" title="Insuba HTML Template"
  240.                                      width="212" alt="Insuba HTML Template">
  241.                             </div>
  242.                             <div class="col-md-4 col-12 col-sm-6">
  243.                                 <p>
  244.                                     <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
  245.                                         <path d="M7.50079 0C4.50533 0 2.06836 2.43697 2.06836 5.4324C2.06836 9.14982 6.92985 14.6072 7.13684 14.8377C7.33125 15.0543 7.67068 15.0539 7.86475 14.8377C8.07173 14.6072 12.9332 9.14982 12.9332 5.4324C12.9332 2.43697 10.4962 0 7.50079 0ZM7.50079 8.1656C5.9937 8.1656 4.76763 6.93949 4.76763 5.4324C4.76763 3.92531 5.99373 2.69924 7.50079 2.69924C9.00785 2.69924 10.2339 3.92534 10.2339 5.43243C10.2339 6.93952 9.00785 8.1656 7.50079 8.1656Z" fill="black"></path>
  246.                                     </svg>
  247.                                     29 rue de Colisée <br>
  248.                                     75008 Paris
  249.                                 </p>
  250.                             </div>
  251.                             <div class="col-md-4 col-12 col-sm-6 mt-5 mt-lg-0">
  252.                                 <p>
  253.                                     <svg width="13" height="13" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
  254.                                         <!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.-->
  255.                                         <path fill="black" d="M256 0a256 256 0 1 1 0 512A256 256 0 1 1 256 0zM232 120l0 136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2 280 120c0-13.3-10.7-24-24-24s-24 10.7-24 24z"></path>
  256.                                     </svg>
  257.                                     Du lundi au vendredi <br>
  258.                                     De 8h30-12h et 14h00-19h00
  259.                                 </p>
  260.                             </div>
  261.                         </div>
  262.                     </div>
  263.                     <div class="col-lg-2 col-12 border-right">
  264.                         <div class="d-flex align-items-center justify-content-center h-100">
  265.                             <a class="agex_footer__contact-btn" href="{{ path('client') }}#contact">Contact</a>
  266.                         </div>
  267.                     </div>
  268.                     <div class="col-lg-1 col-12">
  269.                         <div class="d-flex align-items-center justify-content-end h-100">
  270.                             <a href="https://www.linkedin.com/" target="_blank" class="agex_footer__rs_link">
  271.                                 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z"/></svg>
  272.                             </a>
  273.                         </div>
  274.                     </div>
  275.                 </div>
  276.             </div>
  277.             <div class="footer-middle">
  278.                 <div class="row">
  279.                     <div class="col-lg-10 col-12">
  280.                         <div class="row">
  281.                             <div class="col-lg-4 col-12 col-sm-6 mt-5 mt-lg-0">
  282.                                 <h4 class="footer_agex__title">
  283.                                     Création et Structuration
  284.                                 </h4>
  285.                                 <ul class="footer_agex__list-link">
  286.                                     <li><a href="{{ path('client_custom_page', {'uri': 'createur'}) }}">Création d’entreprise</a></li>
  287.                                     <li><a href="{{ path('client_custom_page', {'uri': 'createur'}) }}">Business plan</a></li>
  288.                                     <li><a href="{{ path('client_custom_page', {'uri': 'createur'}) }}">Choix de structure</a></li>
  289.                                     <li><a href="{{ path('client_custom_page', {'uri': 'createur'}) }}">Organisation financière</a></li>
  290.                                     <li><a href="{{ path('client_custom_page', {'uri': 'createur'}) }}">Mise en place des outils</a></li>
  291.                                 </ul>
  292.                             </div>
  293.                             <div class="col-lg-4 col-12 col-sm-6 mt-5 mt-lg-0">
  294.                                 <h4 class="footer_agex__title">
  295.                                     Pilotage et Décision
  296.                                 </h4>
  297.                                 <ul class="footer_agex__list-link">
  298.                                     <li><a href="{{ path('client_custom_page', {'uri': 'pilotage'}) }}">Tableaux de bord</a></li>
  299.                                     <li><a href="{{ path('client_custom_page', {'uri': 'pilotage'}) }}">Analyse financière</a></li>
  300.                                     <li><a href="{{ path('client_custom_page', {'uri': 'pilotage'}) }}">Prévisionnel de trésorerie</a></li>
  301.                                     <li><a href="{{ path('client_custom_page', {'uri': 'pilotage'}) }}">Situations intermédiaires</a></li>
  302.                                     <li><a href="{{ path('client_custom_page', {'uri': 'pilotage'}) }}">Aide à la décision</a></li>
  303.                                 </ul>
  304.                             </div>
  305.                             <div class="col-lg-4 col-12 col-sm-6 mt-5 mt-lg-0">
  306.                                 <h4 class="footer_agex__title">
  307.                                     Optimisation et Performance
  308.                                 </h4>
  309.                                 <ul class="footer_agex__list-link">
  310.                                     <li><a href="{{ path('client_custom_page', {'uri': 'dirigeant'}) }}">Optimisation de la rémunération</a></li>
  311.                                     <li><a href="{{ path('client_custom_page', {'uri': 'dirigeant'}) }}">Réduction des coûts</a></li>
  312.                                     <li><a href="{{ path('client_custom_page', {'uri': 'dirigeant'}) }}">Optimisation fiscale</a></li>
  313.                                     <li><a href="{{ path('client_custom_page', {'uri': 'dirigeant'}) }}">Stratégie patrimoniale</a></li>
  314.                                     <li><a href="{{ path('client_custom_page', {'uri': 'dirigeant'}) }}">Structuration de la croissance</a></li>
  315.                                 </ul>
  316.                             </div>
  317.                         </div>
  318.                     </div>
  319.                     <div class="col-lg-2 col-12 border-left">
  320.                         <div class="row">
  321.                             <div class="col-12 d-flex justify-content-lg-end mt-5 mt-lg-0">
  322.                                 <ul class="footer_agex__list-link">
  323.                                     <li>
  324.                                         <a href="{{ path('client') }}#cabinet">
  325.                                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"></path></svg>
  326.                                             Cabinet
  327.                                         </a>
  328.                                         <a href="{{ path('client_custom_page', {'uri': 'facture-electronique'}) }}">
  329.                                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"></path></svg>
  330.                                             Facture électronique
  331.                                         </a>
  332.                                         <a href="" target="_blank">
  333.                                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"></path></svg>
  334.                                             Accès client
  335.                                         </a>
  336.                                         <a href="#" onclick="">
  337.                                             <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"></path></svg>
  338.                                             RDV en ligne
  339.                                         </a>
  340.                                     </li>
  341.                                 </ul>
  342.                             </div>
  343.                         </div>
  344.                     </div>
  345.                 </div>
  346.             </div>
  347.         </div>
  348.         <div class="border-top">
  349.             <div class="container">
  350.                 <div class="footer-bottom">
  351.                     <div class="d-flex align-items-bottom justify-content-center flex-column flex-lg-row justify-content-lg-between gap-1 gap-sm-4">
  352.                         <p>© {{ "now"|date('Y') }} {{ cabinet.name | capitalize }} |
  353.                             <a href="{{ path('client_legal_notice') }}">Mentions légales</a> |
  354.                             <a href="{{ path('client_privacy_policy') }}">Politique de confidentialité</a> |
  355.                             Réalisation de sites Internet, <a href="http://www.lagence.expert" target="_blank"> lagence.expert</a>
  356.                         </p>
  357.                         <div class="d-flex gap-3">
  358.                             <a class="container-oec" href="" target="_blank">
  359.                                 <img src="{{ assets_client( accountingFirm,"img/oec-logo.png") }}" alt="logo-img" class="footer-oec">
  360.                             </a>
  361.                         </div>
  362.                     </div>
  363.                 </div>
  364.             </div>
  365.         </div>
  366.     </footer>
  367.     <agex_appelle_ton_ec token="wqd5et5662uq4qiq928xmdz2bnqju78hligvkeav"></agex_appelle_ton_ec>
  368.     <script src="https://widget-appelle-ton-ec.lagence.expert/embed"></script>
  369.     <div class="paginacontainer">
  370.         <div class="progress-wrap">
  371.             <svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
  372.                 <path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
  373.             </svg>
  374.         </div>
  375.     </div>
  376. {% endblock %}
  377. {% block javascripts %}
  378.     <!-- jquery js-->
  379.     <script src="{{ assets_client(accountingFirm, 'js/plugins/jquery-3.7.1.min.js') }}"></script>
  380.     <!-- bootstrap js -->
  381.     <script src="{{ assets_client(accountingFirm, 'js/plugins/bootstrap.min.js') }}"></script>
  382.     <!-- gsap js-->
  383.     <script src="{{ assets_client(accountingFirm, 'js/plugins/gsap.min.js') }}"></script>
  384.     <!-- scrollTrigger js-->
  385.     <script src="{{ assets_client(accountingFirm, 'js/plugins/ScrollTrigger.min.js') }}"></script>
  386.     <!-- swiper js -->
  387.     <script src="{{ assets_client(accountingFirm, 'js/plugins/swiper-bundle.min.js') }}"></script>
  388.     <!-- nice select js -->
  389.     <script src="{{ assets_client(accountingFirm, 'js/plugins/nice-select.js') }}"></script>
  390.     <!-- fontawesome -->
  391.     <script src="{{ assets_client(accountingFirm, 'js/plugins/fontawesome.min.js') }}"></script>
  392.     <!-- magnific-popup js -->
  393.     <script src="{{ assets_client(accountingFirm, 'js/plugins/magnific-popup.js') }}"></script>
  394.     <!-- counter js -->
  395.     <script src="{{ assets_client(accountingFirm, 'js/plugins/jquery.counterup.min.js') }}"></script>
  396.     <!-- waypoints js-->
  397.     <script src="{{ assets_client(accountingFirm, 'js/plugins/waypoints.js') }}"></script>
  398.     <!-- sal js-->
  399.     <script src="{{ assets_client(accountingFirm, 'js/plugins/sal.min.js') }}"></script>
  400.     <!-- ScrollSmoother js -->
  401.     <script src="{{ assets_client(accountingFirm, 'js/plugins/SmoothScroll.js') }}"></script>
  402.     <!-- SplitText js -->
  403.     <script src="{{ assets_client(accountingFirm, 'js/plugins/SplitText.min.js') }}"></script>
  404.     <script src="{{ assets_client(accountingFirm, 'js/plugins/jarallax.min.js') }}"></script>
  405.     <!-- Custom js -->
  406.     <script src="{{ assets_client(accountingFirm, 'js/cat.js') }}"></script>
  407.     <script src="{{ assets_client(accountingFirm, 'js/main.js') }}"></script>
  408. {% endblock %}