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

16 lines
359 B
HTML
Raw Normal View History

2020-01-12 07:51:51 +01:00
{{ define "main" }}
<article class="post">
<header>
<h1>{{ .Title }}</h1>
</header>
2020-02-02 16:01:10 +01:00
<div class="content">
{{ .Content }}
</div>
{{ partial "articleInfoFull.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 }}