Files
hugo-theme-minos/layouts/_default/single.html
2017-02-19 11:06:53 +01:00

17 lines
436 B
HTML

{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
{{ partial "article.html" . }}
{{ if and (not .Params.nocomment) .Site.Params.disqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
</section>
{{ partial "footer.html" . }}
<!--<%- partial('_partial/after-footer') %>-->
</div>
</body>
</html>