Collector/templates/index.html

29 lines
621 B
HTML
Raw Normal View History

2025-05-30 21:20:55 +00:00
<!-- templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Music Album Catalog</title>
<link rel="stylesheet" href="style.css">
2025-05-30 21:20:55 +00:00
</head>
<body>
<h1>Albums</h1>
<table>
<tr>
<th>Album</th>
<th>Artist</th>
<th>Year</th>
</tr>
2025-05-30 21:20:55 +00:00
{% for album in albums %}
<tr>
<td>{{ album.title }} </td>
<td> {{ album.artist }} </td>
<td> ({{ album.year }}) </td>
</tr>
2025-05-30 21:20:55 +00:00
{% endfor %}
</table>
2025-05-30 21:20:55 +00:00
</body>
</html>