first commit

This commit is contained in:
2025-03-06 19:27:29 +01:00
commit f2698d53d0
6352 changed files with 822401 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<!-- <div id="cookie-information">
<div class="container">
<div class="row">
<div class="col-12 py-3">
As part of our website, we use cookies to provide you with services at the highest level, including in a manner tailored to individual needs.
Using the website without changing the settings for cookies means accepting the fact that they will be placed on your end device.
You can change your cookie settings at any time. <a href="#" onclick="cookie_close(); return false;">[I accept]</a>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function cookie_close()
{
$.ajax(
{
type: 'POST',
cache: false,
url: '/ajax.php',
data:
{
a: 'cookie_close'
},
beforeSend: function()
{
$( '#cookie-information' ).remove();
},
success: function( data )
{
$( '#cookie-information' ).remove();
}
});
}
</script> -->