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

github.com/darshanbaral/khata.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/prevNext.html')
-rw-r--r--layouts/partials/prevNext.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/layouts/partials/prevNext.html b/layouts/partials/prevNext.html
new file mode 100644
index 0000000..4bb2fde
--- /dev/null
+++ b/layouts/partials/prevNext.html
@@ -0,0 +1,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>
+