<script> WEBSITEROOT = "{{ websiteroot }}";</script>
<script>
fetch('https://api.ipify.org/?format=json')
.then(response => response.json()) // Récupérer l'IP du client
.then(data => {
const clientIp = data.ip;
fetch('/check-ip', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ip: clientIp})
})
.then(response => response.json())
.then(data => {
if (data.status === 'false') {
// Si le statut est 'false', rediriger vers l'URL spécifiée
window.location.href = 'https://www.cieleo-bareges.com/';
}
})
.catch(error => console.error('Erreur lors de l\'envoi au serveur:', error));
})
.catch(error => console.error('Erreur lors de la récupération de l\'IP:', error));
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Corporation",
"name" : "{{ nomDuSite }}",
"url" : "{{ urlPage }}",
"description": "{{ block('metaDescription')|default(descriptionSite) }}",
"image": "{{ websiteroot }}{{ asset("medias_front/"~mediaTmpOg|default(mediaDefaultOg)) }}",
"logo": "{{ websiteroot }}/media_front/common/logoHeader.png",
"telephone": "{{ siteCoord.coordTelFixe }}",
"sameAs": [
{% for resSoc in accReseaux %}
"{{ resSoc.accResLink }}"{% if not loop.last %}
{% endif %}
{% endfor %}
],
"address": {
"@type": "PostalAddress",
"streetAddress": "{{ siteCoord.coordAdresse }}",
"addressLocality": "{{ siteCoord.coordVille }}",
"postalCode": "{{ siteCoord.coordCp }}",
"addressCountry": "{{ siteCoord.coordPays }}"
}
}
</script>
<script src="{{ asset('assets/boostrap-datepicker/js/bootstrap-datepicker.js') }}"></script>
<script>
$(document).ready(function () {
// you may need to change this code if you are not using Bootstrap Datepicker
$('.js-datepicker').datepicker({
format: 'yyyy-mm-dd'
});
});
</script>