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

recent-posts.html « content « partials « layouts - github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cc90e07082c2af2443891e7d6d393516b4370db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="container">
    <section>
        <div class="section-title">
            <span>Posts</span>
        </div>
        <div class="row px-2">
            {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
                {{ range $paginator.Pages.ByDate.Reverse }}
                    {{ partial "post/card" . }}
                {{ end }}
            {{ partial "content/pagination" . }}
            <!-- begin post -->
        </div>
    </section>
</div>