15 lines
397 B
HTML

{{ 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 }}