hugo-theme-anubis2/layouts/_default/single.html
2020-02-18 20:55:17 +03:00

16 lines
359 B
HTML

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