PaperModX/layouts/_default/single.html

54 lines
1.5 KiB
HTML
Raw Normal View History

{{- 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" . }}
<h1 class="post-title">
{{ .Title }}
2021-09-04 07:33:12 +01:00
{{- if .Draft }}<sup><span class="entry-isdraft">&nbsp;&nbsp;[draft]</span></sup>{{- end }}
</h1>
{{- if .Description }}
<div class="post-description">
{{ .Description }}
</div>
{{- end }}
{{- 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" . -}}
{{/* 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>
{{- $isHidden := .Params.cover.hidden | default site.Params.cover.hiddenInSingle | default site.Params.cover.hidden }}
{{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
{{- if (.Param "ShowToc") }}
{{- partial "toc.html" . }}
{{- end }}
2021-09-02 09:13:08 +01:00
{{- if .Content }}
<div class="post-content">
{{- if not (.Param "disableAnchoredHeadings") }}
{{- partial "anchored_headings.html" .Content -}}
{{- else }}{{ .Content }}{{ end }}
</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" . }}
{{- 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 }}
2018-01-08 16:28:39 +00:00
</footer>
{{- if not (.Param "noComments") }}
{{- 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 */}}