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

related-posts.html « content « partials « layouts - github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2303561fd48bf164d9e89529f2dde915397d8f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ $related := .Site.RegularPages.Related . | first 3 }} {{ with $related }}
<div class="container">
    <section>
        <div class="section-title">
                <span>Posts</span>
        </div>
        <div class="row px-2">
            {{ range . }} {{ partial "post/card" . }} {{ end }}
        </div>
    </section>
</div>
{{ end }}