mirror of
https://github.com/thebaer/cdr.git
synced 2024-11-15 01:31:01 +00:00
27 lines
392 B
Cheetah
27 lines
392 B
Cheetah
|
{{define "mixtape"}}
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Mixtape</title>
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
font-size: 1.2em;
|
||
|
margin: 1em;
|
||
|
}
|
||
|
.active {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
#playlist {
|
||
|
list-style: none;
|
||
|
margin: 1em 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
#playlist li {
|
||
|
margin: 0.5em 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
{{template "full-player" .Tracks}}
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|