main
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>{{ .Title }}</title>
8 <link rel="stylesheet" href="style.css">
9 </head>
10 <body>
11 <h1>{{ .Title }}</h1>
12 <audio controls>
13 <source src="" type="audio/ogg">
14 </audio>
15 <ol>
16 {{ range $index, $item := .Tracks }}
17 <li>
18 {{ $index }}
19 <a href="">{{ .Details.Title }}</a>
20 -
21 <a href="">{{ .Details.Artist }}</a>
22 ({{ .Details.Duration }})
23 </li>
24 {{ end }}
25 </ol>
26 <script src="index.js"></script>
27 </body>
28</html>
29