2020-09-23 09:22:32 +02:00
|
|
|
{{- define "main" }}
|
2019-04-01 10:00:48 +02:00
|
|
|
|
2019-03-31 14:32:06 +02:00
|
|
|
<article class="post-single">
|
2018-01-08 17:28:39 +01:00
|
|
|
<header class="post-header">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{ partial "breadcrumbs.html" . }}
|
2020-07-24 17:16:33 +02:00
|
|
|
<h1 class="post-title">
|
|
|
|
{{ .Title }}
|
2020-07-28 09:06:53 +02:00
|
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup> [draft]</sup></div>{{- end }}
|
2020-07-24 17:16:33 +02:00
|
|
|
</h1>
|
2021-01-28 16:05:45 +01:00
|
|
|
{{- if .Description }}
|
2021-01-02 18:00:20 +01:00
|
|
|
<div class="post-description">
|
|
|
|
{{ .Description }}
|
|
|
|
</div>
|
2021-01-28 16:05:45 +01:00
|
|
|
{{- end }}
|
2021-01-17 07:55:35 +01:00
|
|
|
{{- if not (.Param "hideMeta") }}
|
2019-03-31 14:32:06 +02:00
|
|
|
<div class="post-meta">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2021-02-06 19:20:19 +01:00
|
|
|
{{- partial "translation_list.html" . -}}
|
2021-03-23 10:28:26 +01:00
|
|
|
{{- partial "edit_post.html" . -}}
|
2019-03-31 14:32:06 +02:00
|
|
|
</div>
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</header>
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- $isHidden := .Params.cover.hidden | default .Site.Params.cover.hiddenInSingle | default .Site.Params.cover.hidden }}
|
2020-12-29 12:14:03 +01:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
|
2021-01-17 07:55:35 +01:00
|
|
|
{{- if (.Param "ShowToc") }}
|
2021-03-30 12:37:20 +02:00
|
|
|
{{- partial "toc.html" . }}
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
2020-11-10 07:45:56 +01:00
|
|
|
<div class="post-content">
|
|
|
|
{{- partial "anchored_headings.html" .Content -}}
|
|
|
|
</div>
|
2018-01-08 17:28:39 +01:00
|
|
|
<footer class="post-footer">
|
2020-08-23 13:05:53 +02:00
|
|
|
{{- if .Params.tags }}
|
2018-01-08 17:28:39 +01:00
|
|
|
<ul class="post-tags">
|
2020-12-11 06:58:09 +01:00
|
|
|
{{- range ($.GetTerms "tags") }}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</ul>
|
2020-08-23 13:05:53 +02:00
|
|
|
{{- end }}
|
2021-03-01 18:07:24 +01:00
|
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
2021-04-09 11:25:56 +02:00
|
|
|
{{- partial "post_nav_links.html" . }}
|
2021-01-27 19:35:30 +01:00
|
|
|
{{- end }}
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
|
|
|
|
{{- partial "share_icons.html" . -}}
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</footer>
|
2020-07-20 16:41:58 +02:00
|
|
|
|
2021-01-17 07:55:35 +01:00
|
|
|
{{- if (.Param "comments") }}
|
2020-07-20 16:41:58 +02:00
|
|
|
{{- partial "comments.html" . }}
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</article>
|
2019-04-01 10:00:48 +02:00
|
|
|
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}{{/* end main */}}
|