Add partial for logo an button to start page

This commit is contained in:
Jens M. Sauer 2024-07-07 22:05:09 +02:00
parent 8093c39b17
commit 7505e734df

View File

@ -0,0 +1,16 @@
<section class="wrapper style1 align-center">
<div class="content">
<p>{{ $image := resources.Get "logo/Logo_BarFilipo_4C_pos.svg" }}
<span class="image fit">
<img src="{{ $image.Permalink }}" width="300" height="300" alt="Bar Filipo">
</span>
{{ if isset . "subtext" }}
<p>
{{ .subtext | markdownify }}
</p>
{{ end }}
<ul class="actions stacked">
<li><a href="{{ $.Site.Home.Permalink }}" class="button primary large wide">Zurück zur Startseite</a></li>
</ul>
</div>
</section>