hugo-theme-anubis2/layouts/_default/single.html
2020-06-06 22:05:21 +03:00

16 lines
426 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 "postInfoFull.html" . }}
</article>
{{ if .Site.DisqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
{{ end }}