Lichterei: Bilder + Layout erste Version

This commit is contained in:
BadAgent
2026-08-05 21:38:54 +02:00
parent 7fc885334e
commit e57fed7774
9 changed files with 14 additions and 3 deletions

BIN
assets/lampen/lampe1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
assets/lampen/lampe2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
assets/lampen/lampe3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
assets/lampen/lampe4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

BIN
assets/lampen/lampe5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
assets/lampen/lampe6.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

BIN
assets/lampen/lampe7.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@@ -1,6 +1,4 @@
---
title: "Lichterei"
type: page
type: lampe
---
Kreative Projekte rund um Licht und Lampen ...

View File

@@ -0,0 +1,13 @@
{{ define "main" }}
<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="/assets/lampen/lampe{{ $index }}.jpg" alt="Lampe {{ $index }}" loading="lazy">
</figure>
{{ end }}
</section>
{{ end }}