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

index.html « layouts - github.com/pravin/hugo-theme-prav.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 105005689aa5f2766e023c9d04cc11d7f08a15c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{ define "main" }}
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) 10 }}
<div id="content" class="pure-u-1 pure-u-md-3-4 pure-u-sm-1">
    {{ range .Paginator.Pages }}

    <div class="pad">
        {{- partial "render_single_article.html" . -}}
    </div>
    <div class="pad"></div>

    {{ end }}

    <div class="pagination">
        {{ if $paginator.HasNext }}
        <a class="pure-button pagination-item older" href="{{ $paginator.Next.URL }}">Older</a>
        {{ else }}
        <span class="pagination-item older">Older</span>
        {{ end }}

        {{ if $paginator.HasPrev }}
        <a class="pure-button pagination-item newer" href="{{ $paginator.Prev.URL }}">Newer</a>
        {{ else }}
        <span class="pagination-item newer">Newer</span>
        {{ end }}
    </div>
</div>
{{ end }}