mirror of
https://github.com/carsonip/hugo-theme-minos
synced 2025-12-30 03:19:49 -08:00
17 lines
436 B
HTML
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>
|