WIP: start page with header

This commit is contained in:
Hoernschen 2023-12-24 00:01:53 +01:00
parent 9d834470a6
commit 06b0b4d643
Signed by: hoernschen
GPG key ID: 37591FAF4E6D3462
18 changed files with 1683 additions and 9 deletions

View file

@ -0,0 +1,31 @@
<!--
id: string
odd: 0 or 1
hero:
avatar: image
greeting: string
social: array
type: string
url: string
content: string
-->
<div id="{{ .id }}" class="section {{if eq .odd 0}} section-even {{end}} row">
<div class="section-content hero">
{{ with .hero }}
<div class="hero-content">
{{ if .avatar }}
{{ partial "components/image.html" .avatar }}
{{ end }}
<div>
<h1>{{ .greeting }}</h1>
<h3>{{ .introduction }}</h3>
</div>
</div>
{{ end }}
{{ with .content }}
<div class="description">
{{ . }}
</div>
{{ end }}
</div>
</div>