anthony.lucidcocoon.scot/layouts/partials/banner.html

16 lines
734 B
HTML
Raw Permalink Normal View History

2024-10-12 19:09:23 +00:00
<!-- Banner -->
<section class="banner {{ .style }}">
<div class="content">
{{ with .title }}<h1>{{ . }}</h1>{{ end }}
{{ with .subtitle }}<p class="major">{{ . | safeHTML }}</p>{{ end }}
{{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
{{ with .button }}<ul class="actions stacked">
<li><a href="{{ .link }}" class="button primary large wide smooth-scroll-middle">{{ .label }}</a></li>
<li><a href="https://anthony.lucidcocoon.scot" class="button default large wide smooth-scroll-middle">Gallery (Coming Soon)</a></li>
</ul>{{ end }}
</div>
{{ with .image }}<div class="image">
<img src="{{.}}" alt="Hugo Story" />
</div>{{end}}
</section>