hugo-theme-anubis2/layouts/_default/single.html

21 lines
565 B
HTML
Raw Normal View History

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>
{{ partial "postInfo.html" . }}
2020-01-12 07:51:51 +01:00
</article>
{{ 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 }}