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

github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@gmail.com>2019-06-16 21:20:55 +0300
committerDarshan Baral <darshanbaral@gmail.com>2019-06-16 21:20:55 +0300
commitb47c5eb30198724e0ee50b465ff727b7c6880429 (patch)
tree5bea24b4860971a19534b3766331a23a2d733b07
parente35c01d1fa69c98cd30b3325726841c8734eafa7 (diff)
removed separate files for prev/next buttons
-rw-r--r--layouts/partials/nextChapter.html10
-rw-r--r--layouts/partials/previousChapter.html10
2 files changed, 0 insertions, 20 deletions
diff --git a/layouts/partials/nextChapter.html b/layouts/partials/nextChapter.html
deleted file mode 100644
index 59767e6..0000000
--- a/layouts/partials/nextChapter.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ if .PrevInSection }}
-<p class="navMenu menuItem mb-1 mt-1 text-left">
- <a
- href="{{ .PrevInSection.Permalink | relURL }}"
- title="{{ .PrevInSection.Title }}"
- >
- <i class="fas fa-chevron-circle-right"></i>
- </a>
-</p>
-{{ end }}
diff --git a/layouts/partials/previousChapter.html b/layouts/partials/previousChapter.html
deleted file mode 100644
index 5297da2..0000000
--- a/layouts/partials/previousChapter.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ if .NextInSection }}
-<p class="navMenu menuItem mb-1 mt-1 text-left">
- <a
- href="{{ .NextInSection.Permalink | relURL }}"
- title="{{ .NextInSection.Title }}"
- >
- <i class="fas fa-chevron-circle-left"></i>
- </a>
-</p>
-{{ end }}