templates/layouts/layouts_front/common/script/custom_scripts_top.html.twig line 1

Open in your IDE?
  1. <script> WEBSITEROOT = "{{ websiteroot }}";</script>
  2. <script>
  3.     fetch('https://api.ipify.org/?format=json')
  4.         .then(response => response.json())  // Récupérer l'IP du client
  5.         .then(data => {
  6.             const clientIp = data.ip;
  7.             fetch('/check-ip', {
  8.                 method: 'POST',
  9.                 headers: {
  10.                     'Content-Type': 'application/json',
  11.                 },
  12.                 body: JSON.stringify({ip: clientIp})
  13.             })
  14.                 .then(response => response.json())
  15.                 .then(data => {
  16.                     if (data.status === 'false') {
  17.                         // Si le statut est 'false', rediriger vers l'URL spécifiée
  18.                         window.location.href = 'https://www.cieleo-bareges.com/';
  19.                     }
  20.                 })
  21.                 .catch(error => console.error('Erreur lors de l\'envoi au serveur:', error));
  22.         })
  23.         .catch(error => console.error('Erreur lors de la récupération de l\'IP:', error));
  24. </script>
  25. <script type="application/ld+json">
  26.     {
  27.     "@context": "http://schema.org",
  28.     "@type": "Corporation",
  29.     "name" : "{{ nomDuSite }}",
  30.             "url" : "{{ urlPage }}",
  31.             "description": "{{ block('metaDescription')|default(descriptionSite) }}",
  32.             "image": "{{ websiteroot }}{{ asset("medias_front/"~mediaTmpOg|default(mediaDefaultOg)) }}",
  33.             "logo": "{{ websiteroot }}/media_front/common/logoHeader.png",
  34.             "telephone": "{{ siteCoord.coordTelFixe }}",
  35.             "sameAs": [
  36.     {% for resSoc in accReseaux %}
  37.                 "{{ resSoc.accResLink }}"{% if not loop.last %}
  38.     {% endif %}
  39.     {% endfor %}
  40.     ],
  41.     "address": {
  42.     "@type": "PostalAddress",
  43.     "streetAddress": "{{ siteCoord.coordAdresse }}",
  44.             "addressLocality": "{{ siteCoord.coordVille }}",
  45.             "postalCode": "{{ siteCoord.coordCp }}",
  46.             "addressCountry": "{{ siteCoord.coordPays }}"
  47.             }
  48.             }
  49. </script>
  50. <script src="{{ asset('assets/boostrap-datepicker/js/bootstrap-datepicker.js') }}"></script>
  51. <script>
  52.     $(document).ready(function () {
  53.         // you may need to change this code if you are not using Bootstrap Datepicker
  54.         $('.js-datepicker').datepicker({
  55.             format: 'yyyy-mm-dd'
  56.         });
  57.     });
  58. </script>