Files
robbis.space/layouts/lampe/single.html

27 lines
881 B
HTML

<!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>