I get an error whenever CSS is loaded, not sure what to do about that yet. Doesn't seem to impact anything, but I should probably be using a different way of getting the id from an entity. Also need to think about deleting the functions I don't need.
19 lines
No EOL
300 B
Text
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>no one lol</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> |