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

12 lines
370 B
HTML
Raw Normal View History

{{ define "body-class" }}article-page keep-sidebar{{ end }}
2020-08-22 07:20:08 -04:00
{{ define "main" }}
{{ partial "article/article.html" . }}
2020-08-22 07:20:08 -04:00
{{ if or (not (isset .Params "comments")) (eq .Params.comments "true")}}
{{ partial "comments/include" . }}
{{ end }}
2020-08-22 07:20:08 -04:00
{{ partialCached "footer/footer" . }}
2020-08-22 07:20:08 -04:00
{{ partialCached "article/components/photoswipe" . }}
2020-08-22 07:20:08 -04:00
{{ end }}