16 lines
472 B
HTML
16 lines
472 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ $textContent := .Content }}
|
|
{{ with .Resources.GetMatch "image.jpg" }}
|
|
<article>
|
|
<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 }}
|