1
0
mirror of https://github.com/thebaer/cdr.git synced 2024-11-15 01:31:01 +00:00
cdr/mixtape.tmpl

26 lines
396 B
Cheetah

{{define "mixtape"}}
<html>
<head>
<title>Mixtape</title>
<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.active a {
font-weight: bold;
}
</style>
</head>
<body>
{{template "full-player" .Tracks}}
</body>
</html>
{{end}}