commit c20489f8ade225105520bda364ac74980dc1e52e
parent 04274ff5f5aa1c6a08ca2ba56583878c9c6f929c
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Fri, 2 Nov 2018 22:52:10 +0100
Change pagination labels, delete comment in CI config
Diffstat:
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
@@ -15,7 +15,6 @@ deploy-staging:
before_script:
# - apk --no-cache add make lftp curl npm
- apt-get install make lftp curl
- # - npm install -g postcss-cli
- hugo version
script:
- make deploy-staging
@@ -37,7 +36,6 @@ deploy:
# - apk --no-cache add make lftp curl npm
- apt-get update
- apt-get -y install make lftp curl
- # - npm install -g postcss-cli
- hugo version
script:
- make deploy
diff --git a/themes/tale-mod/layouts/_default/single.html b/themes/tale-mod/layouts/_default/single.html
@@ -51,11 +51,11 @@
<div class="pagination">
{{- if .PrevPage }}
<!-- <a href="{{ .PrevPage.URL }}" class="left arrow">← Previous</a> -->
- <a href="{{ .PrevPage.URL }}" class="right arrow">Next →</a>
+ <a href="{{ .PrevPage.URL }}" class="right arrow">Next series →</a>
{{- end }}
{{- if .NextPage }}
<!-- <a href="{{ .NextPage.URL }}" class="right arrow">Next →</a> -->
- <a href="{{ .NextPage.URL }}" class="left arrow">← Previous</a>
+ <a href="{{ .NextPage.URL }}" class="left arrow">← Previous series</a>
{{- end }}
<a href="{{ .Site.BaseURL }}" class="top">Home</a>