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