kobel/layouts/partials/hero.html
2024-01-06 20:44:35 +01:00

38 lines
No EOL
862 B
HTML

<!--
id: string
odd: 0 or 1
hero:
avatar: image
greeting: string
social: icon
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>
{{ if .social }}
<div class="social">
{{ range .social }}
{{ partial "components/icon.html" . }}
{{ end }}
</div>
{{ end }}
</div>
</div>
{{ end }}
{{ with .content }}
<div class="description">
{{ . }}
</div>
{{ end }}
</div>
</div>