-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (55 loc) · 2.6 KB
/
index.html
File metadata and controls
65 lines (55 loc) · 2.6 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>La Grappe Numerique</title>
<!-- Favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🍇</text></svg>">
<!-- Docsify CSS -->
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
<!-- FullCalendar CSS -->
<link href='https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css' rel='stylesheet'>
<link href='https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css' rel='stylesheet'>
<!-- Custom CSS -->
<link rel="stylesheet" href="./calendar.css">
</head>
<body>
<div id="app">Chargement...</div>
<!-- Bootstrap JS -->
<script src='https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js'></script>
<!-- FullCalendar scripts -->
<script src="https://cdn.jsdelivr.net/npm/@fullcalendar/core@6.1.10/index.global.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fullcalendar/bootstrap5@6.1.10/index.global.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fullcalendar/daygrid@6.1.10/index.global.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fullcalendar/timegrid@6.1.10/index.global.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fullcalendar/list@6.1.10/index.global.min.js"></script>
<!-- Custom JS -->
<script src="./calendar.js"></script>
<!-- Configuration Docsify -->
<script>
window.$docsify = {
name: 'La Grappe Numerique',
repo: 'la-grappe-numerique/list-communities',
homepage: 'https://raw.githubusercontent.com/la-grappe-numerique/list-communities/main/README.md',
search: ['/'],
executeScript: true,
plugins: [
function(hook) {
hook.doneEach(function() {
const calendarEl = document.getElementById('calendar');
if (calendarEl) {
calendarEl.className = 'calendar-container';
loadCalendar();
}
});
}
]
};
</script>
<!-- Docsify et plugins -->
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>