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

prevNext.html « partials « layouts - github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdf21cb2301249be4aea26f57b0a33d238c99084 (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
<div class="mt-4 d-flex flex-row justify-content-around">
  {{- if .NextInSection }}
  <div>
    <a
      href="{{ .NextInSection.Permalink | relURL }}"
      data-toggle="tooltip"
      data-placement="top"
      title="{{ .NextInSection.Title }}"
      ><i class="fas fa-chevron-circle-left" style="font-size: 2em;"></i></a
    >
  </div>
  {{- else }}
  <div><i class="text-secondary fas fa-chevron-circle-left" style="font-size: 2em;"></i></div>
  {{- end }}
  {{- if .PrevInSection }}
  <div>
    <a
      href="{{ .PrevInSection.Permalink | relURL }}"
      data-toggle="tooltip"
      data-placement="top"
      title="{{ .PrevInSection.Title }}"
      ><i class="fas fa-chevron-circle-right" style="font-size: 2em;"></i></a
    >
  </div>
  {{- else }}
  <div><i class="text-secondary fas fa-chevron-circle-right" style="font-size: 2em;"></i></div>
  {{- end }}
</div>