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

prevNext.html « partials « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41fa1fff062ada5753119a02aab439b054209fc3 (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
{{if or .PrevInSection .NextInSection }}
{{- if .PrevInSection }}
    <a
      class="active icon"
      href="{{ .PrevInSection.Permalink | relURL }}"
      aria-label="Previous Article"
      ><i class="bi bi-arrow-left-circle-fill"></i
    ></a>
    {{- else }}
    <div class="disabled icon"><i class="bi bi-arrow-left-circle-fill"></i></div>
    {{- end }}

    {{- if .NextInSection }}
    <a
      class="active icon"
      href="{{ .NextInSection.Permalink | relURL }}"
      aria-label="Next Article"
      ><i class="bi bi-arrow-right-circle-fill"></i
    ></a>
    {{- else }}
    <div class="disabled icon"><i class="bi bi-arrow-right-circle-fill"></i></div>
    {{- end }}
  </div>
  {{ end }}