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-02-08 09:58:55 -05:00
|
|
|
{{- partial "breadcrumbs.html" . }}
|
2020-07-24 11:16:33 -04:00
|
|
|
<h1 class="post-title">
|
|
|
|
{{ .Title }}
|
2020-07-28 03:06:53 -04:00
|
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup> [draft]</sup></div>{{- 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-02-06 13:20:19 -05:00
|
|
|
{{- partial "post_meta.html" . -}}
|
|
|
|
{{- partial "translation_list.html" . -}}
|
2021-03-23 05:28:26 -04:00
|
|
|
{{- partial "edit_post.html" . -}}
|
2019-03-31 08:32:06 -04:00
|
|
|
</div>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end}}
|
2018-01-08 11:28:39 -05:00
|
|
|
</header>
|
2021-01-22 01:22:00 -05:00
|
|
|
{{- $isHidden := .Params.cover.hidden | default .Site.Params.cover.hiddenInSingle | default .Site.Params.cover.hidden}}
|
2020-12-29 06:14:03 -05:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false "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 }}
|
2020-11-10 01:45:56 -05:00
|
|
|
<div class="post-content">
|
|
|
|
{{- partial "anchored_headings.html" .Content -}}
|
|
|
|
</div>
|
2018-01-08 11:28:39 -05:00
|
|
|
<footer class="post-footer">
|
2020-08-23 07:05:53 -04:00
|
|
|
{{- if .Params.tags }}
|
2018-01-08 11:28:39 -05:00
|
|
|
<ul class="post-tags">
|
2020-12-11 00:58:09 -05:00
|
|
|
{{- range ($.GetTerms "tags") }}
|
|
|
|
<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>
|
2020-08-23 07:05:53 -04:00
|
|
|
{{- end }}
|
2021-03-01 12:07:24 -05:00
|
|
|
{{- if (.Param "ShowPostNavLinks") }}
|
2021-01-27 13:35:30 -05:00
|
|
|
{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
|
|
|
{{- if and (gt (len $pages) 1) (in $pages . ) }}
|
|
|
|
<nav class="paginav">
|
|
|
|
{{- with $pages.Next . }}
|
|
|
|
<a class="prev" href="{{.Permalink}}">
|
|
|
|
<span class="title">« {{ i18n "prev_page" }}</span>
|
|
|
|
<br>
|
|
|
|
<span>{{- .Name -}}</span>
|
|
|
|
</a>
|
|
|
|
{{- end}}
|
|
|
|
{{- with $pages.Prev . }}
|
|
|
|
<a class="next" href="{{.Permalink}}">
|
|
|
|
<span class="title">{{ i18n "next_page" }} »</span>
|
|
|
|
<br>
|
|
|
|
<span>{{- .Name -}}</span>
|
|
|
|
</a>
|
|
|
|
{{- end}}
|
|
|
|
</nav>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true) ) }}
|
2020-09-23 08:53:57 -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
|
|
|
|
2020-10-22 07:12:26 -04:00
|
|
|
{{- end }}{{/* end main */}}
|