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">
|
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>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if .Params.hideMeta }}{{ else }}
|
2019-03-31 08:32:06 -04:00
|
|
|
<div class="post-meta">
|
2020-10-20 09:08:29 -04:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2020-09-22 04:18:38 -04:00
|
|
|
{{- if .IsTranslated -}} |
|
2020-09-22 04:11:23 -04:00
|
|
|
<ul class="i18n_list">
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- i18n "translations" | default "Translations"}}:
|
|
|
|
{{- range .Translations }}
|
2020-09-22 04:11:23 -04:00
|
|
|
<li>
|
2020-11-08 12:34:24 -05:00
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
{{- if (and $.Site.Params.displayFullLangName (.Language.LanguageName)) }}
|
2020-11-08 12:37:23 -05:00
|
|
|
{{- .Language.LanguageName | emojify | humanize -}}
|
2020-11-08 12:34:24 -05:00
|
|
|
{{- else }}
|
|
|
|
{{- .Lang | humanize -}}
|
|
|
|
{{- end -}}
|
|
|
|
</a>
|
2020-09-22 04:11:23 -04:00
|
|
|
</li>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2020-09-22 04:11:23 -04:00
|
|
|
</ul>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
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>
|
2020-10-22 07:12:26 -04:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" false) }}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if .Params.ShowToc }}
|
2020-07-24 14:23:25 -04:00
|
|
|
<div class="toc">
|
2020-09-16 06:11:28 -04:00
|
|
|
<details {{if .Params.TocOpen }} open{{ end }}>
|
2020-12-18 09:32:05 -05:00
|
|
|
<summary accesskey="c" title="(Alt + C)">
|
|
|
|
<div class="details">{{- i18n "toc" | default "Table of Contents" }}</div>
|
2020-07-24 14:23:25 -04:00
|
|
|
</summary>
|
|
|
|
<blockquote>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- partial "toc.html" . }}
|
2020-07-24 14:23:25 -04:00
|
|
|
</blockquote>
|
|
|
|
</details>
|
|
|
|
</div>
|
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 }}
|
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
|
|
|
|
2020-10-01 08:22:22 -04:00
|
|
|
{{- if and ($.Site.Params.comments) (ne .Params.comments false) }}
|
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 */}}
|