Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « page « layouts - github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5a1ed838580b2b40d4f8ae3e2d919fc21798a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ 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 "comments/include" . }}
        {{ end }}

        {{ partialCached "footer/footer" . }}
    </main>
</div>

{{ partial "article/components/photoswipe" . }}

{{ end }}