41 lines
992 B
HTML
41 lines
992 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Show Posters</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
.tile {
|
|
width: 400px;
|
|
margin: 10px;
|
|
text-align: center;
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.tile img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.tile .title {
|
|
padding: 10px;
|
|
background-color: #f4f4f4;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% for item in data %}
|
|
<div class="tile">
|
|
<img src="{{ item['POSTER'] }}" alt="{{ item['SHOW'] }}">
|
|
<div class="title">{{ item['SHOW'] }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|