kobel/layouts/partials/hero.html

38 lines
862 B
HTML
Raw Normal View History

2023-12-23 23:01:53 +00:00
<!--
id: string
odd: 0 or 1
hero:
avatar: image
greeting: string
2024-01-06 19:44:35 +00:00
social: icon
2023-12-23 23:01:53 +00:00
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>
2024-01-06 19:44:35 +00:00
{{ if .social }}
<div class="social">
{{ range .social }}
{{ partial "components/icon.html" . }}
{{ end }}
</div>
{{ end }}
2023-12-23 23:01:53 +00:00
</div>
</div>
{{ end }}
{{ with .content }}
<div class="description">
{{ . }}
</div>
{{ end }}
</div>
</div>