2020-09-23 12:52:32 +05:30
|
|
|
{{- define "main" }}
|
2019-04-01 16:00:48 +08:00
|
|
|
|
2019-03-31 20:32:06 +08:00
|
|
|
<article class="post-single">
|
2018-01-09 00:28:39 +08:00
|
|
|
<header class="post-header">
|
2021-03-30 18:07:36 +05:30
|
|
|
{{ partial "breadcrumbs.html" . }}
|
2020-07-24 20:46:33 +05:30
|
|
|
<h1 class="post-title">
|
|
|
|
{{ .Title }}
|
2021-09-04 12:03:12 +05:30
|
|
|
{{- if .Draft }}<sup><span class="entry-isdraft"> [draft]</span></sup>{{- end }}
|
2020-07-24 20:46:33 +05:30
|
|
|
</h1>
|
2021-01-28 20:35:45 +05:30
|
|
|
{{- if .Description }}
|
2021-01-02 09:00:20 -08:00
|
|
|
<div class="post-description">
|
|
|
|
{{ .Description }}
|
|
|
|
</div>
|
2021-01-28 20:35:45 +05:30
|
|
|
{{- end }}
|
2021-01-17 07:55:35 +01:00
|
|
|
{{- if not (.Param "hideMeta") }}
|
2019-03-31 20:32:06 +08:00
|
|
|
<div class="post-meta">
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- partial "post_meta.html" . -}}
|
2021-02-06 23:50:19 +05:30
|
|
|
{{- partial "translation_list.html" . -}}
|
2021-03-23 10:28:26 +01:00
|
|
|
{{- partial "edit_post.html" . -}}
|
2021-10-22 23:22:45 +09:00
|
|
|
{{- partial "post_canonical.html" . -}}
|
2019-03-31 20:32:06 +08:00
|
|
|
</div>
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</header>
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- $isHidden := .Params.cover.hidden | default .Site.Params.cover.hiddenInSingle | default .Site.Params.cover.hidden }}
|
2020-12-29 16:44:03 +05:30
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
|
2021-01-17 07:55:35 +01:00
|
|
|
{{- if (.Param "ShowToc") }}
|
2021-03-30 12:37:20 +02:00
|
|
|
{{- partial "toc.html" . }}
|
2020-09-23 12:52:32 +05:30
|
|
|
{{- end }}
|
2021-09-02 13:43:08 +05:30
|
|
|
|
|
|
|
{{- if .Content }}
|
2020-11-10 12:15:56 +05:30
|
|
|
<div class="post-content">
|
2021-06-10 23:10:40 +05:30
|
|
|
{{- if not (.Param "disableAnchoredHeadings") }}
|
2020-11-10 12:15:56 +05:30
|
|
|
{{- partial "anchored_headings.html" .Content -}}
|
2021-06-10 23:10:40 +05:30
|
|
|
{{- else }}{{ .Content }}{{ end }}
|
2020-11-10 12:15:56 +05:30
|
|
|
</div>
|
2021-09-02 13:43:08 +05:30
|
|
|
{{- end }}
|
|
|
|
|
2018-01-09 00:28:39 +08:00
|
|
|
<footer class="post-footer">
|
2020-08-23 16:35:53 +05:30
|
|
|
{{- if .Params.tags }}
|
2018-01-09 00:28:39 +08:00
|
|
|
<ul class="post-tags">
|
2020-12-10 21:58:09 -08:00
|
|
|
{{- range ($.GetTerms "tags") }}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</ul>
|
2020-08-23 16:35:53 +05:30
|
|
|
{{- end }}
|
2021-03-01 09:07:24 -08:00
|
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
2021-04-09 12:25:56 +03:00
|
|
|
{{- partial "post_nav_links.html" . }}
|
2021-01-28 00:05:30 +05:30
|
|
|
{{- end }}
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
|
|
|
|
{{- partial "share_icons.html" . -}}
|
2020-09-23 12:52:32 +05:30
|
|
|
{{- end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</footer>
|
2020-07-20 20:11:58 +05:30
|
|
|
|
2021-01-17 07:55:35 +01:00
|
|
|
{{- if (.Param "comments") }}
|
2020-07-20 20:11:58 +05:30
|
|
|
{{- partial "comments.html" . }}
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</article>
|
2019-04-01 16:00:48 +08:00
|
|
|
|
2021-03-30 18:07:36 +05:30
|
|
|
{{- end }}{{/* end main */}}
|