30 lines
549 B
Plaintext
30 lines
549 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<title>Image-App</title>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
img {
|
|
width: 300px;
|
|
height: auto
|
|
}
|
|
|
|
body {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Hier den Code ergaenzen -->
|
|
<figure>
|
|
<figcaption><%= bild.beschreibung %></figcaption>
|
|
<img src="<%= `img/${bild.dateiname}` %>">
|
|
</figure>
|
|
|
|
<a href="/?num=<%= prev %>">Zurück</a> |
|
|
<a href="/?num=<%= next %>">Vor</a>
|
|
</body>
|
|
|
|
</html> |