-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCIH.html
More file actions
34 lines (30 loc) · 1.28 KB
/
Copy pathCIH.html
File metadata and controls
34 lines (30 loc) · 1.28 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=no" />
<title>Diktatur</title>
<script>
function go_back () {
window.location.href = "/#E-1";
}
</script>
</head>
<body>
<a href="https://youtu.be/DSG53BsUYd0?t=21" target="_blank" rel="noopener"><img src="https://cihoche.fr/img/header.png" alt="" style="border-radius: 50%;max-width: 20%;filter: blur(6px);border: 2px solid #000;box-shadow: 1px 1px 10px 2px;"></a>
<a href="https://cihoche.fr/" target="_blank" rel="noopener"><img id="logo_cih" src="" alt="CIH" style="width: 20%;display: block; margin: 10px;"></a>
<h2>Make CIH great again!</h2>
<button id="back-easter-egg" onclick="go_back()">Revenir à HocheMap</button>
</body>
<script>
const d = new Date();
const month = d.getMonth();
if (month === 11 || month === 0) {
document.getElementById('logo_cih').src = 'https://cihoche.fr/img/logo-decembre.png'
} else if (month === 9) {
document.getElementById('logo_cih').src = 'https://cihoche.fr/img/logo-octobre.png'
} else {
document.getElementById('logo_cih').src = 'https://cihoche.fr/img/logo.png'
}
</script>
</html>