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

prevnext.html « partials « layouts - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc8fef312eb9d041082bcebaf8112e6b6fd0fe61 (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
<p class="mb-1 mt-1 text-left">
  {{ if .PrevInSection }}
  <a
    href="{{ .PrevInSection.Permalink | relURL }}"
    title="{{ .PrevInSection.Title }}"
  >
    <i class="navMenu fas fa-chevron-circle-right"></i>
  </a>
  {{ else }}
  <i class="navMenu-disabled fas fa-chevron-circle-right"></i>
  {{ end }}
</p>
<p class="mb-1 mt-1 text-left">
  {{ if .NextInSection }}
  <a
    href="{{ .NextInSection.Permalink | relURL }}"
    title="{{ .NextInSection.Title }}"
  >
    <i class="navMenu fas fa-chevron-circle-left"></i>
  </a>
  {{ else }}
  <i class="navMenu-disabled fas fa-chevron-circle-left"></i>
  {{ end }}
</p>