2020-01-12 07:51:51 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
<article class="post">
|
|
|
|
<header>
|
2020-06-21 22:02:58 +02:00
|
|
|
<h1 class="post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1>
|
2020-01-12 07:51:51 +01:00
|
|
|
</header>
|
2020-02-02 16:01:10 +01:00
|
|
|
<div class="content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2020-06-07 12:36:02 +02:00
|
|
|
{{ partial "postInfo.html" . }}
|
2020-01-12 07:51:51 +01:00
|
|
|
</article>
|
2020-06-07 13:20:40 +02:00
|
|
|
|
|
|
|
{{ if .Site.Params.paginationSinglePost}}
|
|
|
|
{{ partial "paginationPost.html" . }}
|
|
|
|
{{ 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
|
|
|
|
|
|
|
{{ end }}
|