mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
a0016f50f6
feat: if language switch shows language codes (instead of full language name), those codes are now uppercase feat: translation list in post headers are replaced by links to translations in page headers - the old translation list in the post header can still be enabled using the boolean parameter "showTranslationListInPosts" (i.e. to turn it back on, add the parameter to your hugo.toml and set it to true)
61 lines
1.8 KiB
HTML
61 lines
1.8 KiB
HTML
{{- define "main" }}
|
|
|
|
<article class="post-single">
|
|
<header class="post-header">
|
|
{{ partial "breadcrumbs.html" . }}
|
|
<h1 class="post-title">
|
|
{{ .Title }}
|
|
{{- if .Draft }}<sup><span class="entry-isdraft"> [draft]</span></sup>{{- end }}
|
|
</h1>
|
|
{{- if .Description }}
|
|
<div class="post-description">
|
|
{{ .Description }}
|
|
</div>
|
|
{{- end }}
|
|
{{- if not (.Param "hideMeta") }}
|
|
<div class="post-meta">
|
|
{{- partial "post_meta.html" . -}}
|
|
{{- if .Param "showTranslationListInPosts" }}
|
|
{{- partial "translation_list.html" . -}}
|
|
{{- end }}
|
|
{{- partial "edit_post.html" . -}}
|
|
{{- partial "post_canonical.html" . -}}
|
|
</div>
|
|
{{- end }}
|
|
</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 }}
|
|
|
|
{{- 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 */}}
|