This commit is contained in:
2025-02-13 18:50:22 +01:00
parent 5c211013b5
commit 4cae4e9e28
803 changed files with 107055 additions and 14 deletions

View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Image-App</title>
<meta charset="utf-8" />
<style>
img {
width: 300px;
height: auto;
}
body {
text-align: center;
}
.navigation {
margin-top: 20px;
}
.navigation a {
text-decoration: none;
padding: 5px 10px;
color: #333;
}
.navigation a:hover {
color: #666;
}
</style>
</head>
<body>
<h3><%= bildData.bild.beschreibung %></h3>
<img
src="/img/<%= bildData.bild.dateiname %>"
alt="<%= bildData.bild.beschreibung %>"
/>
<div class="navigation">
<a href="/?data=<%= encodeURIComponent(prevData) %>">Zurück</a> |
<a href="/?data=<%= encodeURIComponent(nextData) %>">Vor</a>
</div>
</body>
</html>