2020-01-12 07:51:51 +01:00
|
|
|
{{ define "main" }}
|
2020-06-24 21:21:59 +02:00
|
|
|
{{ if .Menus }}
|
|
|
|
<nav class="post-navigation">
|
|
|
|
{{ range .Menus }}
|
2021-01-20 20:12:50 +01:00
|
|
|
<a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
|
2020-06-24 21:21:59 +02:00
|
|
|
{{ end }}
|
|
|
|
</nav>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-01-20 20:12:50 +01:00
|
|
|
<article class="post h-entry">
|
2020-06-21 22:23:07 +02:00
|
|
|
<header class="post-header">
|
2021-01-20 20:12:50 +01:00
|
|
|
<h1 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1>
|
2021-07-08 22:32:45 +02:00
|
|
|
|
|
|
|
{{ partial "post-language-switcher.html" . }}
|
2020-01-12 07:51:51 +01:00
|
|
|
</header>
|
2021-01-20 20:12:50 +01:00
|
|
|
<div class="content e-content">
|
2020-02-02 16:01:10 +01:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2021-07-09 18:00:52 +02:00
|
|
|
{{ partial "post-info.html" . }}
|
2020-01-12 07:51:51 +01:00
|
|
|
</article>
|
2020-06-07 13:20:40 +02:00
|
|
|
|
2020-06-24 21:21:59 +02:00
|
|
|
{{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }}
|
2021-07-09 18:00:52 +02:00
|
|
|
{{ partial "post-pagination.html" . }}
|
2020-06-07 13:20:40 +02:00
|
|
|
{{ end }}
|
|
|
|
|
2020-01-21 19:57:57 +01:00
|
|
|
{{ if .Site.DisqusShortname }}
|
|
|
|
{{ template "_internal/disqus.html" . }}
|
|
|
|
{{ end }}
|
2020-01-12 07:51:51 +01:00
|
|
|
|
2021-01-17 17:16:45 +01:00
|
|
|
{{ if .Site.Params.UtterancesRepo }}
|
|
|
|
{{ partial "utterances.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
2020-01-12 07:51:51 +01:00
|
|
|
{{ end }}
|