2020-09-23 08:22:32 +01:00
|
|
|
{{- define "main" }}
|
2019-04-01 09:00:48 +01:00
|
|
|
|
2019-03-31 13:32:06 +01:00
|
|
|
<article class="post-single">
|
2018-01-08 16:28:39 +00:00
|
|
|
<header class="post-header">
|
2020-07-24 16:16:33 +01:00
|
|
|
<h1 class="post-title">
|
|
|
|
{{ .Title }}
|
2020-07-28 08:06:53 +01:00
|
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup> [draft]</sup></div>{{- end }}
|
2020-07-24 16:16:33 +01:00
|
|
|
</h1>
|
2021-01-02 17:00:20 +00:00
|
|
|
<div class="post-description">
|
|
|
|
{{ .Description }}
|
|
|
|
</div>
|
2021-01-17 06:55:35 +00:00
|
|
|
{{- if not (.Param "hideMeta") }}
|
2019-03-31 13:32:06 +01:00
|
|
|
<div class="post-meta">
|
2020-10-20 14:08:29 +01:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2021-01-24 12:22:45 +00:00
|
|
|
{{- if .IsTranslated -}}
|
2021-01-24 12:37:17 +00:00
|
|
|
{{- if or .Params.author $.Site.Params.author (.Param "ShowReadingTime") (not .Date.IsZero) }} | {{- end -}}
|
2020-09-22 09:11:23 +01:00
|
|
|
<ul class="i18n_list">
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- i18n "translations" | default "Translations"}}:
|
|
|
|
{{- range .Translations }}
|
2020-09-22 09:11:23 +01:00
|
|
|
<li>
|
2020-11-08 17:34:24 +00:00
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
{{- if (and $.Site.Params.displayFullLangName (.Language.LanguageName)) }}
|
2020-11-08 17:37:23 +00:00
|
|
|
{{- .Language.LanguageName | emojify | humanize -}}
|
2020-11-08 17:34:24 +00:00
|
|
|
{{- else }}
|
|
|
|
{{- .Lang | humanize -}}
|
|
|
|
{{- end -}}
|
|
|
|
</a>
|
2020-09-22 09:11:23 +01:00
|
|
|
</li>
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end }}
|
2020-09-22 09:11:23 +01:00
|
|
|
</ul>
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end }}
|
2019-03-31 13:32:06 +01:00
|
|
|
</div>
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end}}
|
2018-01-08 16:28:39 +00:00
|
|
|
</header>
|
2021-01-22 06:22:00 +00:00
|
|
|
{{- $isHidden := .Params.cover.hidden | default .Site.Params.cover.hiddenInSingle | default .Site.Params.cover.hidden}}
|
2020-12-29 11:14:03 +00:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
|
2021-01-17 06:55:35 +00:00
|
|
|
{{- if (.Param "ShowToc") }}
|
2020-07-24 19:23:25 +01:00
|
|
|
<div class="toc">
|
2021-01-17 06:55:35 +00:00
|
|
|
<details {{if (.Param "TocOpen") }} open{{ end }}>
|
2020-12-18 14:32:05 +00:00
|
|
|
<summary accesskey="c" title="(Alt + C)">
|
|
|
|
<div class="details">{{- i18n "toc" | default "Table of Contents" }}</div>
|
2020-07-24 19:23:25 +01:00
|
|
|
</summary>
|
2021-01-23 18:08:51 +00:00
|
|
|
<div class="inner">
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- partial "toc.html" . }}
|
2021-01-23 18:08:51 +00:00
|
|
|
</div>
|
2020-07-24 19:23:25 +01:00
|
|
|
</details>
|
|
|
|
</div>
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end }}
|
2020-11-10 06:45:56 +00:00
|
|
|
<div class="post-content">
|
|
|
|
{{- partial "anchored_headings.html" .Content -}}
|
|
|
|
</div>
|
2018-01-08 16:28:39 +00:00
|
|
|
<footer class="post-footer">
|
2020-08-23 12:05:53 +01:00
|
|
|
{{- if .Params.tags }}
|
2018-01-08 16:28:39 +00:00
|
|
|
<ul class="post-tags">
|
2020-12-11 05:58:09 +00:00
|
|
|
{{- range ($.GetTerms "tags") }}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
2020-03-09 15:56:47 +00:00
|
|
|
{{- end }}
|
2018-01-08 16:28:39 +00:00
|
|
|
</ul>
|
2020-08-23 12:05:53 +01:00
|
|
|
{{- end }}
|
2021-01-27 18:35:30 +00:00
|
|
|
{{- if .Site.Params.ShowPostNavLinks }}
|
|
|
|
{{- $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 08:22:32 +01:00
|
|
|
{{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true) ) }}
|
2020-09-23 13:53:57 +01:00
|
|
|
{{- partial "share_icons.html" . }}
|
2020-09-23 08:22:32 +01:00
|
|
|
{{- end }}
|
2018-01-08 16:28:39 +00:00
|
|
|
</footer>
|
2020-07-20 15:41:58 +01:00
|
|
|
|
2021-01-17 06:55:35 +00:00
|
|
|
{{- if (.Param "comments") }}
|
2020-07-20 15:41:58 +01:00
|
|
|
{{- partial "comments.html" . }}
|
2020-03-09 15:56:47 +00:00
|
|
|
{{- end }}
|
2018-01-08 16:28:39 +00:00
|
|
|
</article>
|
2019-04-01 09:00:48 +01:00
|
|
|
|
2020-10-22 12:12:26 +01:00
|
|
|
{{- end }}{{/* end main */}}
|