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: 50c47a5a2cf763300b38e7794f926f7ae43bc4f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{- 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 }}

    {{- 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>