-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmixtape.tmpl
75 lines (74 loc) · 1.4 KB
/
mixtape.tmpl
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
{{define "mixtape"}}
<html>
<head>
<title>Mixtape</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style type="text/css">
body {
font-size: 1.2em;
margin: 1em;
font-family: Helvetica, sans-serif;
}
h1 {
font-size: 1.2em;
font-weight: normal;
font-style: italic;
}
audio {
width: 100%;
}
p {
line-height: 1.5;
}
#wrapper {
margin: 1em auto 2em;
max-width: 30em;
}
#playlist {
list-style: decimal-leading-zero;
margin: 1em 0;
}
#playlist li {
margin: 0.5em 0;
}
li.active > a {
font-weight: bold;
}
li p {
display: none;
}
li.active p {
display: block;
}
#controls {
display: flex;
justify-content: space-between;
margin: 1em 0 2em;
}
</style>
</head>
<body>
<div id="wrapper">
<h1>Mixtape</h1>
{{template "player" .Tracks}}
<div id="controls">
<a id="prev" href="#prev">⏮ Previous</a>
<a id="next" href="#next">Next ⏭</a>
</div>
{{template "playlist" .Tracks}}
{{template "playlist-js"}}
</div>
</body>
</html>
{{end}}
{{define "track-info"}}
{{if eq .Num 1}}
<p>[Here I might introduce this mix.]</p>
<p>[Some notes about track 1.]</p>
{{else if eq .Num 2}}
<p>[Some notes about track 2.]</p>
{{else if eq .Num 5}}
<p>[Some notes about track 5.]</p>
{{end}}
{{end}}