syllabus/app/templates/show.html
2025-04-27 18:54:51 -04:00

47 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ show['SHOW'] }}</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: #141414 !important;
}
/* Add any styles you want */
.container {
max-width: 600px;
margin: auto;
text-align: center;
}
img {
max-width: 100%;
height: auto;
}
.title {
font-size: 24px;
margin-top: 10px;
}
.description {
font-size: 16px;
color: #555;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<img src="{{ show['POSTER'] }}" alt="{{ show['SHOW'] }}">
<div class="title">{{ show['SHOW'] }}</div>
<div class="description">
{{ show['DESCRIPTION'] }}
</div>
<!-- Optional back link -->
<p><a href="/">← Back to all shows</a></p>
</div>
</body>
</html>