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

github.com/mismith0227/hugo_theme_pickles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Engel <vlow+git@turbocache3000.de>2021-09-18 20:24:03 +0300
committerFlorian Engel <vlow+git@turbocache3000.de>2021-09-18 20:56:08 +0300
commit323d292018e05a6e25723372d563961ae7829606 (patch)
tree3c22dde69374e26d74aaedd0e4b246503657d3ac
parentcb165bea60234aa12a16c0b62f97648ae07cc25d (diff)
Remove redundant `else` statements
-rwxr-xr-xlayouts/_default/single.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index bff481d..05cd9ec 100755
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -54,13 +54,11 @@
<div class="c-pagination__newer">
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}">Newer</a>
- {{ else }}
{{ end }}
</div>
<div class="c-pagination__older">
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}">Older</a>
- {{ else }}
{{ end }}
</div>
</div>