2019-07-08 07:05:23 +02:00
|
|
|
{{ define "main" }}
|
2019-07-31 18:43:51 +02:00
|
|
|
<header class="post-header">
|
2021-09-12 15:07:16 +02:00
|
|
|
{{ if .Params.postimage -}}
|
|
|
|
<img class="post-image"
|
|
|
|
src="/images/{{ .Params.postimage }}"
|
|
|
|
alt="{{ .Params.postimagedescription }}">
|
|
|
|
{{ end }}
|
2019-07-08 07:05:23 +02:00
|
|
|
<h1 id="title">{{ .Title }}</h1>
|
2019-08-25 08:58:26 +02:00
|
|
|
{{- partial "post-info.html" . -}}
|
2019-07-08 07:05:23 +02:00
|
|
|
</header>
|
2021-09-12 15:07:16 +02:00
|
|
|
<article {{ if eq .Layout "verse" }} class="content, {{ .Layout }}"
|
|
|
|
{{ else }} class="content"
|
|
|
|
{{ end }}>
|
|
|
|
{{ .Content }}
|
|
|
|
</article>
|
2019-07-08 07:05:23 +02:00
|
|
|
{{ end }}
|
|
|
|
|