www.kontakt-bamberg.de/layouts/_default/single.html

16 lines
485 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ $textContent := .Content }}
{{ with .Resources.GetMatch "image.jpg" }}
<article class="page">
<section class="text">{{ $textContent }}</section>
<section class="image">
<img alt="{{ .Title }}" src="{{ .RelPermalink }}">
by <a href="{{ .Params.copyright_url }}"{{ if hasPrefix .Params.copyright_url "https://" }} target="_blank"{{ end }}>{{ .Params.copyright }}</a>
</section>
</article>
{{ else }}
{{ .Content }}
{{ end }}
{{ end }}