summaryrefslogtreecommitdiff
path: root/themes/PaperMod/layouts/_default/single.html
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-09-01 11:27:12 -0700
committerrtk0c <[email protected]>2025-09-01 11:27:12 -0700
commit568d2f599f7f42494758797f0d052f3a2847cbf0 (patch)
treec16ace68524dc3c554f83f7501cc9acf255ac0f4 /themes/PaperMod/layouts/_default/single.html
parentcb3897c9f07769a820a4fea23946a78fea6456cb (diff)
parent86b0d0c422e34c38837b5b5495ad6d295d0e73d2 (diff)
Merge commit '86b0d0c422e34c38837b5b5495ad6d295d0e73d2' as 'themes/PaperMod'
Diffstat (limited to 'themes/PaperMod/layouts/_default/single.html')
-rw-r--r--themes/PaperMod/layouts/_default/single.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/themes/PaperMod/layouts/_default/single.html b/themes/PaperMod/layouts/_default/single.html
new file mode 100644
index 0000000..19a624f
--- /dev/null
+++ b/themes/PaperMod/layouts/_default/single.html
@@ -0,0 +1,65 @@
+{{- define "main" }}
+
+<article class="post-single">
+ <header class="post-header">
+ {{ 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") }}
+ <div class="post-meta">
+ {{- partial "post_meta.html" . -}}
+ {{- partial "translation_list.html" . -}}
+ {{- partial "edit_post.html" . -}}
+ {{- partial "post_canonical.html" . -}}
+ </div>
+ {{- end }}
+ </header>
+ {{- $isHidden := (.Param "cover.hiddenInSingle") | default (.Param "cover.hidden") | default false }}
+ {{- partial "cover.html" (dict "cxt" . "IsSingle" true "isHidden" $isHidden) }}
+ {{- if (.Param "ShowToc") }}
+ {{- partial "toc.html" . }}
+ {{- end }}
+
+ {{- if .Content }}
+ <div class="post-content">
+ {{- if not (.Param "disableAnchoredHeadings") }}
+ {{- partial "anchored_headings.html" .Content -}}
+ {{- else }}{{ .Content }}{{ end }}
+ </div>
+ {{- end }}
+
+ <footer class="post-footer">
+ {{- $tags := .Language.Params.Taxonomies.tag | default "tags" }}
+ <ul class="post-tags">
+ {{- range ($.GetTerms $tags) }}
+ <li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+ {{- if (.Param "ShowPostNavLinks") }}
+ {{- partial "post_nav_links.html" . }}
+ {{- end }}
+ {{- if (and site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
+ {{- partial "share_icons.html" . -}}
+ {{- end }}
+ </footer>
+
+ {{- if (.Param "comments") }}
+ {{- partial "comments.html" . }}
+ {{- end }}
+</article>
+
+{{- end }}{{/* end main */}}