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

page-navigation.html « partials « layouts - github.com/pavel-pi/kiss-em.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 567123030d6da326e1260aa8fdf4226afe0d81cd (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
28
29
30
<section class="section">
  <div class="container">
    <nav class="level is-mobile">
      <div class="level-left">
        <div class="level-item">
          {{ if .Paginator.HasPrev }}
          <a class="button" href="{{ .Paginator.Prev.URL }}">
            <span class="icon is-small is-marginless">
              {{ partial "svg/icons" "prev" }}
            </span>
            {{ i18n "next_page" }}
          </a>
          {{ end }}
        </div>
      </div>
      <div class="level-right is-marginless">
        <div class="level-item">
          {{ if .Paginator.HasNext }}
          <a class="button" href="{{ .Paginator.Next.URL }}">
            {{ i18n "prev_page" }}
            <span class="icon is-small is-marginless">
              {{ partial "svg/icons" "next" }}
            </span>
          </a>
          {{ end }}
        </div>
      </div>
    </nav>
  </div>
</section>