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: 5a1b4e858c25f896a7372b338dc6573705fddc41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{- if .PrevInSection }}
    <a
      class="active primary-icon"
      href="{{ .PrevInSection.Permalink | relURL }}"
      aria-label="Previous Article"
      ><i class="bi bi-arrow-left-circle"></i
    ></a>
    {{- else }}
    <div class="disabled"><i class="bi bi-arrow-left-circle"></i></div>
    {{- end }}
    <a class="primary-icon" href="#" aria-label="navigate to top"
      ><i class="bi bi-box-arrow-in-up"></i></a>
    {{- if .NextInSection }}
    <a
      class="active primary-icon"
      href="{{ .NextInSection.Permalink | relURL }}"
      aria-label="Next Article"
      ><i class="bi bi-arrow-right-circle"></i
    ></a>
    {{- else }}
    <div class="disabled"><i class="bi bi-arrow-right-circle"></i></div>
    {{- end }}
  </div>