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