Rename and begin implementing views

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.
This commit is contained in:
mitteneer 2025-03-04 11:17:47 -05:00
parent d1d5c08f9a
commit a55f4e7bc0
33 changed files with 192 additions and 28 deletions

View file

@ -0,0 +1,19 @@
<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>