bar-filipo.de/layouts/partials/banner-headless.html
jsauer 2fe26f27a9
All checks were successful
Deploy Hugo / deploy (push) Successful in 46s
Update layouts/partials/banner-headless.html
Remove smooth scroll Feature for Buttons
2024-10-24 15:26:16 +02:00

24 lines
759 B
HTML

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