hugo-PaperMod/layouts/_default/single.html

66 lines
2.2 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 entry-hint-parent">
{{ .Title }}
{{- if .Draft }}
<span class="entry-hint" title="Draft">
<svg xmlns="http://www.w3.org/2000/svg" height="35" viewBox="0 -960 960 960" fill="currentColor">
<path
d="M160-410v-60h300v60H160Zm0-165v-60h470v60H160Zm0-165v-60h470v60H160Zm360 580v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q9 9 13 20t4 22q0 11-4.5 22.5T862.09-380L643-160H520Zm300-263-37-37 37 37ZM580-220h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z" />
</svg>
</span>
{{- 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 := (.Param "cover.hiddenInSingle") | default (.Param "cover.hidden") | default false }}
2023-12-16 08:39:19 +01:00
{{- partial "cover.html" (dict "cxt" . "IsSingle" true "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 */}}