Layout-Verzeichnis korrigiert: lampen -> lampe (Hugo type mapping)
This commit is contained in:
26
layouts/lampe/single.html
Normal file
26
layouts/lampe/single.html
Normal 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>
|
||||
Reference in New Issue
Block a user