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

gallery.html « partials « layouts - github.com/caressofsteel/hugo-story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11e72c9dfc22a0581aa2a7595b7cf70aba9c4f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- Gallery -->
<section class="wrapper style1 align-center">
    <div class="inner">
        <h2>{{ .title }}</h2>
        <p>{{ .content | safeHTML }}</p>
    </div>

    <!-- Gallery -->
    <div class="gallery {{ .style }}">
        {{ range .pictures }}
            {{ partial "picture" . }}
        {{ end }}
    </div>
</section>