PaperModX/layouts/_default/single.html

70 lines
2.3 KiB
HTML
Raw Normal View History

{{- define "main" }}
{{- $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" . }}
{{- if $isNewsletter -}}
<a class="newsletter-brand" href="{{ .Parent.Permalink }}">
<div class="icon"></div>
<div class="name">{{ .Param "newsletterName" }}</div>
<div class="issueno">#{{ .Param "issueno" }}</div>
<div class="arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>
</div>
</a>
{{- end -}}
<h1 class="post-title">
{{- if $isNewsletter -}}
{{- replace .Title (.Param "titlePrefix") (.Param "titlePrefixReplace") -}}
{{- else -}}
{{- .Title -}}
{{- end -}}
{{- 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 */}}