hugo-theme-anubis2/layouts/_default/single.html
2020-06-07 13:36:02 +03:00

16 lines
422 B
HTML

{{ define "main" }}
<article class="post">
<header>
<h1 class="post-title{{ if .Params.favorite }} favorite{{end}}">{{ trim .Title " " }}</h1>
</header>
<div class="content">
{{ .Content }}
</div>
{{ partial "postInfo.html" . }}
</article>
{{ if .Site.DisqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
{{ end }}