Layout-Verzeichnis korrigiert: lampen -> lampe (Hugo type mapping)

This commit is contained in:
BadAgent
2026-08-06 10:12:16 +02:00
parent 99d5e5b6fe
commit 42920b96cc

26
layouts/lampe/single.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ .Title }} - {{ .Site.Title }}</title>
<link rel="stylesheet" type="text/css" href="/assets/css/lichterei.css">
</head>
<body class="lampe-type">
{{- partial "header.html" . -}}
<main id="content">
<section class="lichterei-hero">
<h1>{{ .Title }}</h1>
<p class="intro">Lampen die ich gesammelt, gebastelt und geliebt habe. Jede hat ihre eigene Geschichte und ihren eigenen Glow.</p>
</section>
<section class="lampen-grid">
{{ range $index, $element := seq 1 7 }}
<figure class="lampe-card" style="animation-delay: {{ div $index 10 }}s">
<img src="/lampen/lampe{{ $index }}.jpg" alt="Lampe {{ $index }}" loading="lazy">
</figure>
{{ end }}
</section>
</main>
{{- partial "footer.html" . -}}
</body>
</html>