-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.html
More file actions
42 lines (38 loc) · 1.34 KB
/
Copy pathinstall.html
File metadata and controls
42 lines (38 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Install — Mycelium Hackathon</title>
<link rel="stylesheet" href="styles/mycelium.css">
<link rel="stylesheet" href="styles/site.css">
</head>
<body>
<script src="js/chrome.js"></script>
<script>renderChrome("install");</script>
<script src="js/mycelium-bg.js"></script>
<div class="single-col-layout">
<main class="single-col-main">
<div class="main-inner">
<div class="slideshow">
<div id="slides"></div>
</div>
</div>
</main>
</div>
<button class="slide-arrow slide-arrow-prev" id="prev-btn" aria-label="Previous step">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<button class="slide-arrow slide-arrow-next" id="next-btn" aria-label="Next step">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
<div id="pg-bar"></div>
<script src="config.js"></script>
<script src="js/api.js"></script>
<script src="js/slideshow.js"></script>
</body>
</html>