40 lines
854 B
HTML
40 lines
854 B
HTML
<!-- templates/index.html -->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Music Album Catalog</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
background-color: #f9f9f9;
|
|
border: 1px solid #ddd;
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Albums</h1>
|
|
<ul>
|
|
{% for album in albums %}
|
|
<li>{{ album.title }} by {{ album.artist }} ({{ album.year }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|