-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcalendar.html
More file actions
70 lines (65 loc) · 2.9 KB
/
calendar.html
File metadata and controls
70 lines (65 loc) · 2.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>CyberCup.IT</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<!-- Core theme CSS (includes Bootstrap)--><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
function bodyLoad(){
navbar = document.getElementById("navbarInclude")
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {navbar.innerHTML = this.responseText;}
if (this.status == 404) {navbar.innerHTML = "Navbar not found.";}
}
}
xhttp.open("GET", "/navbar.html", true);
xhttp.send();
footer = document.getElementById("footerInclude")
xhttp2 = new XMLHttpRequest();
xhttp2.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {footer.innerHTML = this.responseText;}
if (this.status == 404) {footer.innerHTML = "Footer not found.";}
}
}
xhttp2.open("GET", "/footer.html", true);
xhttp2.send();
}
</script>
</head>
<body onload="bodyLoad()">
<!-- Responsive navbar-->
<div id="navbarInclude"> </div>
<!-- Page content-->
<div class="container pt-4 pb-4">
<div class="card text-center">
<div class="card-header">
<h3 class="text-center">Calendario CTF CyberCup 2025 (3° Edizione)</h3>
</div>
<div class="card-body border-bottom">
<h5 class="card-title">Gennaio 2025 (1° Round):</h5>
<h6>Srdnlen CTF</h6>
<p class="card-text">Inizio: 18 Gennaio 2025, 19:00 CET - Fine: 19 Gennaio 2025, 19:00 CEST <br><a class="mx-1" href="https://ctf.srdnlen.it/">Sito Ufficiale</a> <a class="mx-1" href="https://ctftime.org/event/2576">CTFtime</a></p>
</div>
<div class="card-footer border-bottom">
<p class="card-text">*Il calendario del campionato viene aggiornato in base agli eventi disponibili per quel periodo.</p>
</div>
</div>
</div>
<footer id="footerInclude">
</footer>
<!-- Bootstrap core JS
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
Core theme JS-->
<script src="/js/scripts.js"></script>
</body>
</html>