-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (87 loc) · 3.93 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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en-US">
<head>
<link href="style.css" rel="stylesheet">
<link href="favicon.png" rel="icon">
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="shortcut icon" href="/assets/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="manifest" href="assets/site.webmanifest">
<title>Light of Hope</title>
</head>
<body>
<section>
<div class="container">
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<!-- Redirects to project GitHub -->
<a href="https://github.com/Songtech-0912/light-of-hope">GitHub</a>
<!-- Redirects to docs/ folder on GitHub -->
<a href="https://github.com/Songtech-0912/light-of-hope/tree/main/docs/">Docs</a>
<a aria-label="Toggle theme (does not work right now)" href="#" class="theme-toggle">
<i class="icon icon-theme"></i>
</a>
</nav>
<header>
<img alt="Light of Hope logo" src="assets/title.svg" />
</header>
<div id="audio-player">
<audio id="audio" controls data-autoplay="false">
<source src="audio/Light of Hope 1.mp3">
</audio>
<div class="player-container">
<label id="player-title" for="player-progressbar">Currently playing: Light of Hope 1</label>
<div id="player-progressbar" tabindex="0">
<!--Markup dynamically generated via JS-->
</div>
<div class="player-controls">
<div class="toggle-container" tabindex="0" aria-label="Toggle autoplay">
<p>Autoplay</p>
<label class="toggle" data-control id="autoplay">
<!--Markup dynamically generated via JS-->
</label>
</div>
<button aria-label="Play previous" id="play-prev" data-control>
<i class="icon icon-play-prev"></i>
</button>
<button aria-label="Play" id="play" data-tooltip="Play/pause" data-control>
<i class="icon icon-play"></i>
</button>
<button aria-label="Play next" id="play-next" data-control>
<i class="icon icon-play-next"></i>
</button>
<button aria-label="Loop" id="loop" data-control>
<i class="icon icon-loop"></i>
</button>
<button aria-label="Download song" id="download" data-control>
<i class="icon icon-download"></i>
</button>
</div>
</div>
</div>
</div>
</section>
<section class="poems">
<div class="container">
<div id="poem-english">
<label for="poem-english">English</label>
<article>
<!--Contents dynamically generated by JS-->
</article>
</div>
<div id="poem-commandian">
<label for="poem-commandian">Commandúleàn</label>
<article>
<!--Contents dynamically generated by JS-->
</article>
</div>
</div>
</section>
<script src="database.js"></script>
<script src="./main.js"></script>
</body>
</html>