-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.9 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>EMF Visualiser</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://unpkg.com/@stackoverflow/stacks@2.5.2/dist/css/stacks.min.css">
<link href="styles.css?version=234" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/luxon@3.4.4/build/global/luxon.min.js"
integrity="sha256-7NQm0bhvDJKosL8d+6ZgSi2LxZCIcA/TD087GLEBO9M=" crossorigin="anonymous"></script>
<script src="script.js?version=234"></script>
</head>
<body class="themed theme-custom">
<div class="d-flex jc-space-between ai-center px12">
<div class="flex--item filters">
<div class="s-btn-group">
<button class="date s-btn" data-value="2024-05-30">Thu 30 May</button>
<button class="date s-btn" data-value="2024-05-31">Fri 31 May</button>
<button class="date s-btn" data-value="2024-06-01">Sat 1 June</button>
<button class="date s-btn" data-value="2024-06-02">Sun 2 June</button>
</div>
</div>
<div class="flex--item controls">
<button class="s-btn s-btn__danger s-btn__outlined" id="button-reset">Reset</button>
<button class="s-btn s-btn__outlined" id="button-export">Export to Clipboard</button>
<button class="s-btn s-btn__outlined" id="button-import">Import</button>
</div>
<div class="flex--item">
<a href="https://github.com/waiwaing/emf-schedule-visualiser" class="s-link">GitHub</a>
</div>
</div>
<div class="calendar overflow-scroll">
<div class="venues"></div>
<div class="talks">Loading... - if you see this for more than a few seconds, try refreshing</div>
<div class="clock"></div>
</div>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/369607e36a.js" crossorigin="anonymous"></script>
</body>
</html>