bar-filipo.de/layouts/partials/banner-headless.html
Jens M. Sauer 40a6c29e5b Rework banner
Make banner a headless leaf bundle
2024-07-23 22:43:07 +02:00

21 lines
736 B
HTML

{{ with .Site.GetPage "/banner" }}
{{ $image := resources.Get "logo/Logo_BarFilipo_4C_pos.svg" }}
<section class="banner {{ .Params.style }}">
<div class="content">
<h1><img src="{{ $image.RelPermalink }}" width="400" height="400" alt="{{ .Site.Title }}"></h1>
<p class="major">{{ .Params.subtitle }}</p>
<p>{{ .Content }}</p>
{{ with .Params.button }}
<ul class="actions stacked">
<li><a href="#{{ .link }}" class="button primary large wide smooth-scroll-middle">{{ .label }}</a></li>
</ul>
{{ end }}
</div>
{{ with .Resources.GetMatch "banner.*" }}
<div class="image">
<img src="{{ .RelPermalink }}" alt="banner" />
</div>
{{ end }}
</section>
{{ end }}