forked from jameswilce/DevMinDArT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (68 loc) · 2.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="MinDArT">
<link rel="apple-touch-icon" href="assets/mindArt_Logo_152.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/mindArt_Logo_152.png">
<link rel="apple-touch-icon" sizes="384x384" href="assets/mindArt_Logo_384.png">
<title>MinDArT Home</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="shortcut icon" href="mindArt_Logo.png">
<link rel="manifest" href="/manifest.json">
<script src="functions.js"></script>
<script type="module">
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw-final.js', {
type: 'module',
scope: '/'
}).then(registration => {
console.log('ServiceWorker registration successful');
}).catch(err => {
console.log('ServiceWorker registration failed: ', err);
});
});
}
</script>
</head>
<body class="home">
<main>
<img class="logo" src="assets/mindart.png" alt="MinDArT logo">
<div class="grid" data-element="home-grid">
<a href="MinDArT-1-Touchscape/index.html" data-week="1">
<img src="assets/touchscape-icon.png" alt="Week 1 - Touchscape">
</a>
<a href="MinDArT-2-Linescape/index.html" data-week="2">
<img src="assets/linescape-icon.png" alt="Week 2 - Linescape">
</a>
<a href="MinDArT-3-Circlescape/index.html" data-week="3">
<img src="assets/circlescape-icon.png" alt="Week 3 - Circlescape">
</a>
<a href="MinDArT-4-Colourscape/index.html" data-week="4">
<img src="assets/colourscape-icon.png" alt="Week 4 - Colourscape">
</a>
<a href="MinDArT-5-Dotscape/index.html" data-week="5">
<img src="assets/dotscape-icon.png" alt="Week 5 - Dotscape">
</a>
<a href="MinDArT-6-Linkscape/index.html" data-week="6">
<img src="assets/linkscape-icon.png" alt="Week 6 - Linkscape">
</a>
<a href="MinDArT-7-Rotationscape/index.html" data-week="7">
<img src="assets/rotationscape-icon.png" alt="Week 7 - Rotationscape">
</a>
<a href="MinDArT-8-Symmetryscape/index.html" data-week="8">
<img src="assets/symmetryscape-icon.png" alt="Week 8 - Symmetryscape">
</a>
</div>
</main>
<script>
showOnlyCurrentLinks();
</script>
</body>
</html>