2020-09-23 03:22:32 -04:00
|
|
|
{{- define "main" }}
|
2019-04-01 04:00:48 -04:00
|
|
|
|
2019-03-31 08:32:06 -04:00
|
|
|
<article class="post-single">
|
2018-01-08 11:28:39 -05:00
|
|
|
<header class="post-header">
|
2021-03-30 08:37:36 -04:00
|
|
|
{{ partial "breadcrumbs.html" . }}
|
2023-12-16 03:36:46 -05:00
|
|
|
<h1 class="post-title entry-hint-parent">
|
2020-07-24 11:16:33 -04:00
|
|
|
{{ .Title }}
|
2023-12-16 03:36:46 -05:00
|
|
|
{{- 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 }}
|
2020-07-24 11:16:33 -04:00
|
|
|
</h1>
|
2021-01-28 10:05:45 -05:00
|
|
|
{{- if .Description }}
|
2021-01-02 12:00:20 -05:00
|
|
|
<div class="post-description">
|
|
|
|
{{ .Description }}
|
|
|
|
</div>
|
2021-01-28 10:05:45 -05:00
|
|
|
{{- end }}
|
2021-01-17 01:55:35 -05:00
|
|
|
{{- if not (.Param "hideMeta") }}
|
2019-03-31 08:32:06 -04:00
|
|
|
<div class="post-meta">
|
2021-03-30 08:37:36 -04:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2021-02-06 13:20:19 -05:00
|
|
|
{{- partial "translation_list.html" . -}}
|
2021-03-23 05:28:26 -04:00
|
|
|
{{- partial "edit_post.html" . -}}
|
2021-10-22 10:22:45 -04:00
|
|
|
{{- partial "post_canonical.html" . -}}
|
2019-03-31 08:32:06 -04:00
|
|
|
</div>
|
2021-03-30 08:37:36 -04:00
|
|
|
{{- end }}
|
2018-01-08 11:28:39 -05:00
|
|
|
</header>
|
2023-11-25 07:36:31 -05:00
|
|
|
{{- $isHidden := (.Param "cover.hiddenInSingle") | default (.Param "cover.hidden") | default false }}
|
2023-12-16 02:39:19 -05:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsSingle" true "isHidden" $isHidden) }}
|
2021-01-17 01:55:35 -05:00
|
|
|
{{- if (.Param "ShowToc") }}
|
2021-03-30 06:37:20 -04:00
|
|
|
{{- partial "toc.html" . }}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2021-09-02 04:13:08 -04:00
|
|
|
|
|
|
|
{{- if .Content }}
|
2020-11-10 01:45:56 -05:00
|
|
|
<div class="post-content">
|
2021-06-10 13:40:40 -04:00
|
|
|
{{- if not (.Param "disableAnchoredHeadings") }}
|
2020-11-10 01:45:56 -05:00
|
|
|
{{- partial "anchored_headings.html" .Content -}}
|
2021-06-10 13:40:40 -04:00
|
|
|
{{- else }}{{ .Content }}{{ end }}
|
2020-11-10 01:45:56 -05:00
|
|
|
</div>
|
2021-09-02 04:13:08 -04:00
|
|
|
{{- end }}
|
|
|
|
|
2018-01-08 11:28:39 -05:00
|
|
|
<footer class="post-footer">
|
2022-04-22 23:54:12 -04:00
|
|
|
{{- $tags := .Language.Params.Taxonomies.tag | default "tags" }}
|
2018-01-08 11:28:39 -05:00
|
|
|
<ul class="post-tags">
|
2022-04-22 23:54:12 -04:00
|
|
|
{{- range ($.GetTerms $tags) }}
|
2020-12-11 00:58:09 -05:00
|
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
2020-03-09 11:56:47 -04:00
|
|
|
{{- end }}
|
2018-01-08 11:28:39 -05:00
|
|
|
</ul>
|
2021-03-01 12:07:24 -05:00
|
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
2021-04-09 05:25:56 -04:00
|
|
|
{{- partial "post_nav_links.html" . }}
|
2021-01-27 13:35:30 -05:00
|
|
|
{{- end }}
|
2022-03-27 09:14:06 -04:00
|
|
|
{{- if (and site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
|
2021-03-30 08:37:36 -04:00
|
|
|
{{- partial "share_icons.html" . -}}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2018-01-08 11:28:39 -05:00
|
|
|
</footer>
|
2020-07-20 10:41:58 -04:00
|
|
|
|
2021-01-17 01:55:35 -05:00
|
|
|
{{- if (.Param "comments") }}
|
2020-07-20 10:41:58 -04:00
|
|
|
{{- partial "comments.html" . }}
|
2020-03-09 11:56:47 -04:00
|
|
|
{{- end }}
|
2018-01-08 11:28:39 -05:00
|
|
|
</article>
|
2019-04-01 04:00:48 -04:00
|
|
|
|
2021-03-30 08:37:36 -04:00
|
|
|
{{- end }}{{/* end main */}}
|