20 lines
No EOL
587 B
Text
20 lines
No EOL
587 B
Text
@zig {
|
|
const ColumnChoices = []const enum{song, album, artist, artistlist, scrobbles, date};
|
|
const columns: ColumnChoices = &.{.song, .artistlist, .album, .date};
|
|
}
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
@partial partials/header
|
|
<h1>{{.song.name}}</h1>
|
|
<div>{{.song.scrobbles}} scrobbles ({{.song.rank}} place)</div>
|
|
@partial partials/firstlast_listens(firstlast: .firstlast)
|
|
<h3>Yearly Performance</h3>
|
|
@partial partials/timescale(range: .yearly)
|
|
<h2>Scrobbles</h2>
|
|
@partial partials/newtable(T: ColumnChoices, table_data: .scrobbles, columns: columns)
|
|
</body>
|
|
</html> |