30 lines
725 B
Plaintext
30 lines
725 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><%= beschreibung %></figcaption>
|
|
<img src="<%= `img/${img}` %>">
|
|
</figure>
|
|
|
|
<a href="<%= `/?img=${ zurueck(current).dateiname}&num=${zurueck(current).num}& beschreibung=${zurueck(current).beschreibung}` %>">Zurück</a>
|
|
<a href="<%= `/?img=${ vor(current).dateiname}&num=${vor(current).num}& beschreibung=${vor(current).beschreibung}` %>">Vor</a>
|
|
</body>
|
|
|
|
</html> |