2020-01-12 07:51:51 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
<article class="post">
|
|
|
|
<header>
|
2020-06-06 21:05:21 +02:00
|
|
|
<h1 class="post-title{{ if .Params.favorite }} favorite{{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-01-21 19:57:57 +01:00
|
|
|
{{ if .Site.DisqusShortname }}
|
|
|
|
{{ template "_internal/disqus.html" . }}
|
|
|
|
{{ end }}
|
2020-01-12 07:51:51 +01:00
|
|
|
|
|
|
|
{{ end }}
|