21 lines
736 B
HTML
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 }}
|