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

prevNext.html « partials « layouts - github.com/darshanbaral/khata.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bb2fde755275e3321795b349f19d44f98b08096 (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
29
30
31
32
33
  <div class="mr-4">
    {{- if .NextInSection }}
    <a
      href="{{ .NextInSection.Permalink | relURL }}"
      data-toggle="tooltip"
      data-placement="top"
      title="{{ .NextInSection.Title }}"
      ><i class="newer fas fa-chevron-left" style="font-size: 2em;"></i
    ></a>
    {{- else }}
    <i
      class="text-secondary fas fa-chevron-left"
      style="font-size: 2em;"
    ></i>
    {{- end }}
  </div>
  <div class="ml-4">
    {{- if .PrevInSection }}
    <a
      href="{{ .PrevInSection.Permalink | relURL }}"
      data-toggle="tooltip"
      data-placement="top"
      title="{{ .PrevInSection.Title }}"
      ><i class="older fas fa-chevron-right" style="font-size: 2em;"></i
    ></a>
    {{- else }}
    <i
      class="text-secondary fas fa-chevron-right"
      style="font-size: 2em;"
    ></i>
    {{- end }}
  </div>