hugo-PaperMod/layouts/_default/single.html

59 lines
1.7 KiB
HTML
Raw Normal View History

{{- 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" . }}
<h1 class="post-title">
{{ .Title }}
2021-09-04 08:33:12 +02: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 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" . -}}
{{- partial "edit_post.html" . -}}
{{- partial "post_canonical.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>
{{- $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 10:13:08 +02:00
{{- if .Content }}
<div class="post-content">
{{- if not (.Param "disableAnchoredHeadings") }}
{{- partial "anchored_headings.html" .Content -}}
{{- else }}{{ .Content }}{{ end }}
</div>
2021-09-02 10:13:08 +02:00
{{- end }}
2018-01-08 17:28:39 +01:00
<footer class="post-footer">
{{- $tags := .Language.Params.Taxonomies.tag | default "tags" }}
2018-01-08 17:28:39 +01:00
<ul class="post-tags">
{{- 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>
{{- if (.Param "ShowPostNavLinks") }}
{{- partial "post_nav_links.html" . }}
{{- end }}
{{- if (and site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
2021-03-30 14:37:36 +02:00
{{- partial "share_icons.html" . -}}
{{- end }}
2018-01-08 17:28:39 +01:00
</footer>
{{- if (.Param "comments") }}
{{- 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 */}}