Lichterei: Bilder + Layout erste Version
BIN
assets/lampen/lampe1.jpg
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
assets/lampen/lampe2.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
assets/lampen/lampe3.jpg
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
assets/lampen/lampe4.jpg
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
assets/lampen/lampe5.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
assets/lampen/lampe6.jpg
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
assets/lampen/lampe7.jpg
Normal file
|
After Width: | Height: | Size: 68 KiB |
@@ -1,6 +1,4 @@
|
||||
---
|
||||
title: "Lichterei"
|
||||
type: page
|
||||
type: lampe
|
||||
---
|
||||
|
||||
Kreative Projekte rund um Licht und Lampen ...
|
||||
|
||||
13
layouts/lampen/single.html
Normal 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 }}
|
||||