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