zuletzt/src/app/views/albums/get.zmpl
mitteneer 8a70239170 Fix header on artists/albums pages
I'm realizing what I have is extremely fragile, so not ideal, but not a bad starting place I would say
2025-03-04 12:00:48 -05:00

19 lines
No EOL
300 B
Text

<html>
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
</head>
<body>
@partial partials/header
<h1>{{.album}}</h1>
<table>
<tr>
<th>Name</th>
@for (.songs) |song| {
<tr>
<td class=cell><a href="/songs/{{song.url}}">{{song.name}}</a></td>
</tr>
}
</table>
</body>
</html>