forked from thebaer/cdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixtape.tmpl
46 lines (45 loc) · 871 Bytes
/
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
{{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;
}
#playlist {
list-style: decimal-leading-zero;
margin: 1em 0;
}
#playlist li {
margin: 0.5em 0;
}
li p {
display: none;
font-style: italic;
}
li.active a {
font-weight: bold;
}
li.active p {
display: block;
}
</style>
</head>
<body>
{{template "full-player" .Tracks}}
</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}}