Files
FH/WS24_25/WebTech/web-pruefung-projekt/aufgabe6/views/home.ejs
2025-02-05 12:20:00 +01:00

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>