hugo-theme-stack-stars/layouts/_default/single.html

21 lines
647 B
HTML
Raw Normal View History

{{ define "container-class" }}article-page with-toolbar{{ end }}
2020-08-22 11:20:08 +00:00
{{ define "main" }}
<div id="article-toolbar">
<a href="{{ .Site.BaseURL }}" class="back-home">
{{ (resources.Get "icons/back.svg").Content | safeHTML }}
<span>Back</span>
</a>
</div>
2020-08-22 11:20:08 +00:00
{{ partial "article/article.html" . }}
2020-08-22 11:20:08 +00:00
{{ partial "article/components/related-contents" . }}
2020-08-22 11:20:08 +00:00
{{ if or (not (isset .Params "comments")) (eq .Params.comments "true")}}
{{ partial "comments/include" . }}
{{ end }}
2020-08-22 11:20:08 +00:00
{{ partialCached "footer/footer" . }}
2020-08-22 11:20:08 +00:00
{{- partial "article/components/photoswipe.html" . -}}
2020-08-22 11:20:08 +00:00
{{ end }}