-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
49 lines (41 loc) · 2.61 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="title">JMSS Timetable</title>
<link rel="apple-touch-icon" sizes="180x180" href="./meta/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./meta/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./meta/favicon-16x16.png">
<link rel="manifest" href="./manifest.json">
<link rel="mask-icon" href="./meta/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#212121">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="logo">
<img src="./jmss-logo-white-FINAL.svg" alt="JMSS">
</header>
<div class="week-indicator" id="weekIndicator"></div>
<main id="clock" class="clock">
<section class="clock__time" aria-label="No Time Displayed" id="clockTime">
<span class="clock__time__mins" id="clockMins">––</span>
<span class="clock__time__secs" id="clockSecs">––</span>
</section>
<section class="clock__subheading" id="clockSubHeading">Loading...</section>
</main>
<footer class="bottom-nav">
<a href="https://github.com/JMSS-time/time-updated/issues" target="_blank">Feedback</a>
<a href="https://jmss-time.github.io/custom-image">Custom Image</a>
</footer>
<div id="alert" class="alert" style="display: none" data-alert-id="maintenance2022">
<p>Hello! We're looking for people to take over maintenance. <a href="https://github.com/jmss-time/time-updated/issues/new?title=I%27d%20like%20to%20take%20over%20development%20for%20this%20project!&body=">Let us know if you'd be interested.</a></p>
<button id="alertClose">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="100%" height="100%" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512" class="iconify alert__element__icon" data-icon="ion:close-circle" data-inline="false"><path d="M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208s208-93.31 208-208S370.69 48 256 48zm75.31 260.69a16 16 0 1 1-22.62 22.62L256 278.63l-52.69 52.68a16 16 0 0 1-22.62-22.62L233.37 256l-52.68-52.69a16 16 0 0 1 22.62-22.62L256 233.37l52.69-52.68a16 16 0 0 1 22.62 22.62L278.63 256z" fill="currentColor"></path></svg>
</button>
</div>
<script src="./script.js"></script>
</body>
</html>