Hugo-theme-stack/layouts/page/single.html

20 lines
591 B
HTML
Raw Normal View History

2020-08-22 07:20:08 -04:00
{{ define "body_class" }}2-column{{ end }}
{{ define "main" }}
<div class="container extended flex on-phone--column align-items--flex-start article-and-sidebar">
{{ partial "sidebar/left.html" . }}
<main class="main article-page do-not-overflow full-width">
{{ partial "article/article.html" . }}
{{ if or (not (isset .Params "comments")) (eq .Params.comments "true")}}
{{ partial "article/components/comment" . }}
{{ end }}
{{ partialCached "footer" . }}
2020-08-22 07:20:08 -04:00
</main>
</div>
{{ partial "article/components/photoswipe" . }}
{{ end }}