2020-09-23 08:22:32 +01:00
|
|
|
{{- define "main" }}
|
2022-09-07 08:19:46 +01:00
|
|
|
{{- $isNewsletter := eq .Type "newsletter" }}
|
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" . }}
|
2022-09-07 08:19:46 +01:00
|
|
|
|
|
|
|
{{- if $isNewsletter -}}
|
2022-09-07 08:37:31 +01:00
|
|
|
{{- partial "newsletter_brand.html" . }}
|
2022-09-07 08:19:46 +01:00
|
|
|
{{- end -}}
|
2020-07-24 16:16:33 +01:00
|
|
|
<h1 class="post-title">
|
2022-09-07 08:19:46 +01:00
|
|
|
{{- if $isNewsletter -}}
|
|
|
|
{{- replace .Title (.Param "titlePrefix") (.Param "titlePrefixReplace") -}}
|
|
|
|
{{- else -}}
|
|
|
|
{{- .Title -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- 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">
|
2022-09-07 08:19:46 +01:00
|
|
|
{{- .Description -}}
|
2021-01-02 17:00:20 +00:00
|
|
|
</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" . -}}
|
2022-04-22 07:11:34 +01:00
|
|
|
{{/* TODO move to footer */}}
|
|
|
|
{{/* partial "edit_post.html" . */}}
|
|
|
|
{{/* 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>
|
2022-03-27 14:14:06 +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">
|
2022-05-05 09:23:55 +01:00
|
|
|
{{- if (.Param "socialLinks") }}
|
|
|
|
{{- partial "social_links.html" . }}
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end }}
|
2022-05-05 09:23:55 +01:00
|
|
|
|
2022-04-21 18:09:19 +01:00
|
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
|
|
|
{{- partial "post_nav_links.html" . }}
|
|
|
|
{{- end }}
|
2022-09-07 08:37:31 +01:00
|
|
|
|
|
|
|
{{- if $isNewsletter }}
|
2022-09-07 09:49:18 +01:00
|
|
|
{{- partial "newsletter_sub_form.html"}}
|
2022-09-07 08:37:31 +01:00
|
|
|
{{- end }}
|
2018-01-08 16:28:39 +00:00
|
|
|
</footer>
|
2020-07-20 15:41:58 +01:00
|
|
|
|
2022-05-04 18:16:51 +01:00
|
|
|
{{- if not (.Param "noComments") }}
|
2022-05-27 14:33:40 +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 */}}
|