All checks were successful
Deploy Hugo / deploy (push) Successful in 46s
Remove smooth scroll Feature for Buttons
24 lines
759 B
HTML
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 }}
|