Collector/templates/index.html

29 lines
621 B
HTML

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