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

github.com/darshanbaral/mero.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.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layouts/partials/prevNext.html b/layouts/partials/prevNext.html
new file mode 100644
index 0000000..cdf21cb
--- /dev/null
+++ b/layouts/partials/prevNext.html
@@ -0,0 +1,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>