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">
|
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>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- if .Params.hideMeta }}{{ else }}
|
2019-03-31 14:32:06 +02:00
|
|
|
<div class="post-meta">
|
2020-10-20 15:08:29 +02:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2020-09-22 10:18:38 +02:00
|
|
|
{{- if .IsTranslated -}} |
|
2020-09-22 10:11:23 +02:00
|
|
|
<ul class="i18n_list">
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- i18n "translations" | default "Translations"}}:
|
|
|
|
{{- range .Translations }}
|
2020-09-22 10:11:23 +02:00
|
|
|
<li>
|
|
|
|
<a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a>
|
|
|
|
</li>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
2020-09-22 10:11:23 +02:00
|
|
|
</ul>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
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>
|
2020-10-22 13:12:26 +02:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false) }}
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- if .Params.ShowToc }}
|
2020-07-24 20:23:25 +02:00
|
|
|
<div class="toc">
|
2020-09-16 12:11:28 +02:00
|
|
|
<details {{if .Params.TocOpen }} open{{ end }}>
|
2020-07-24 20:23:25 +02:00
|
|
|
<summary>
|
2020-09-23 09:22:32 +02:00
|
|
|
<div class="details">{{- i18n "toc" | default "Table of Contents" }}</div>
|
2020-07-24 20:23:25 +02:00
|
|
|
</summary>
|
|
|
|
<blockquote>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- partial "toc.html" . }}
|
2020-07-24 20:23:25 +02:00
|
|
|
</blockquote>
|
|
|
|
</details>
|
|
|
|
</div>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
<div class="post-content">{{ .Content }}</div>
|
|
|
|
<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-03-09 16:56:47 +01:00
|
|
|
{{- range .Params.tags }}
|
2020-08-24 22:10:02 +02:00
|
|
|
{{- $href := print (absLangURL "tags/") (urlize .) }}
|
2019-08-21 06:03:12 +02:00
|
|
|
<li><a href="{{ $href }}">{{ . }}</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 }}
|
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
|
|
|
|
2020-10-01 14:22:22 +02:00
|
|
|
{{- if and ($.Site.Params.comments) (ne .Params.comments false) }}
|
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 */}}
|