-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (93 loc) · 3.3 KB
/
Copy pathindex.html
File metadata and controls
109 lines (93 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MML3T5ZR');</script>
<!-- End Google Tag Manager -->
<!-- Osano CookieConsent -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
type: "opt-in",
palette: {
popup: { background: "#000" },
button: { background: "#f1d600" }
},
content: {
message: "Ce site utilise les cookies 🍪",
dismiss: "Refuser",
allow: "Accepter les 🍪",
link: "En savoir plus+",
href: "/cookies.html"
},
onInitialise: function(status) {
if (status == cookieconsent.status.allow) enableGA();
},
onStatusChange: function(status) {
if (status == cookieconsent.status.allow) enableGA();
}
});
});
</script>
<!-- Consent Mode v2 : refus par défaut -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag("consent", "default", {
ad_storage: "denied",
analytics_storage: "denied",
ad_user_data: "denied",
ad_personalization: "denied"
});
</script>
<!-- Fonction qui charge GA4 après consentement -->
<script>
function enableGA() {
gtag("consent", "update", {
ad_storage: "granted",
analytics_storage: "granted"
});
var s = document.createElement("script");
s.async = true;
s.src = "https://www.googletagmanager.com/gtag/js?id=G-VMVKWDFY5D";
document.head.appendChild(s);
gtag("js", new Date());
gtag("config", "G-VMVKWDFY5D");
}
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Acceuil</title>
<link rel="icon" type="image/png" href="https://cdn2.scratch.mit.edu/get_image/user/129754968_90x90.png">
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MML3T5ZR"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<h1>Salut,</h1>
<h3>bienvenu sur mon site officiel !</h3>
<p>Pour le site officiel de <a href="https://lgdc.flarum.cloud">LGDC Forum</a>, allez <a href="https://lgdc-forum.neocities.org/">ici</a>.
<br>
<mark>/!\ Ce site est en cours de developpement, il manque certainement des choses.</mark></p>
<br>
<a href="https://scratch-2-0-2-4.github.io/OS-Certificate-Center.html">OS Certificate Center</a>
<br>
<br>
<br>
<div class="footer">
<footer>
<br>
<p style="color: #ffffff;">© 2024 - <script>document.write(new Date().getFullYear())</script> Scratch_2_0_2_4, tous droits réservés.</p>
<br>
</footer>
</div>
</body>
</html>