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: d1791f0d5f90b9321b95b7b86977f80725c77d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ 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 }}
    </main>
</div>

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

{{ end }}