Compare commits

...

3 Commits

Author SHA1 Message Date
c5d1ae7264 Merge branch 'fix-philipp' 2024-09-24 21:31:12 +02:00
60b6feff0e Merge branch 'references' 2024-09-24 21:30:59 +02:00
fd1219c91f Add partial layout for philipp 2024-09-24 21:16:04 +02:00

View File

@ -0,0 +1,14 @@
{{ with .Site.GetPage "/philipp" }}
<section class="wrapper style1 align-center" id="{{ .Params.id }}">
<div class="inner">
<span class="image fit">
{{ range .Resources.ByType "image" }}
{{ with .Process "webp Resize x1200" }}
<img src="{{ .RelPermalink }}" />
{{ end }}
{{ end }}
</span>
<p>{{ .Content }}</p>
</div>
</section>
{{ end }}