tChange pagination labels, delete comment in CI config - andersdamsgaard.com - my photography webpage
 (HTM) git clone git://src.adamsgaard.dk/andersdamsgaard.com
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c20489f8ade225105520bda364ac74980dc1e52e
 (DIR) parent 04274ff5f5aa1c6a08ca2ba56583878c9c6f929c
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Fri,  2 Nov 2018 22:52:10 +0100
       
       Change pagination labels, delete comment in CI config
       
       Diffstat:
         M .gitlab-ci.yml                      |       2 --
         M themes/tale-mod/layouts/_default/s… |       4 ++--
       
       2 files changed, 2 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
       t@@ -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
       t@@ -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
 (DIR) diff --git a/themes/tale-mod/layouts/_default/single.html b/themes/tale-mod/layouts/_default/single.html
       t@@ -51,11 +51,11 @@
            <div class="pagination">
                {{- if .PrevPage }}
                <!-- <a href="{{ .PrevPage.URL }}" class="left arrow">&#8592; Previous</a> -->
       -        <a href="{{ .PrevPage.URL }}" class="right arrow">Next &#8594;</a>
       +        <a href="{{ .PrevPage.URL }}" class="right arrow">Next series &#8594;</a>
                {{- end }}
                {{- if .NextPage }}
                <!-- <a href="{{ .NextPage.URL }}" class="right arrow">Next &#8594;</a> -->
       -        <a href="{{ .NextPage.URL }}" class="left arrow">&#8592; Previous</a>
       +        <a href="{{ .NextPage.URL }}" class="left arrow">&#8592; Previous series</a>
                {{- end }}
        
                <a href="{{ .Site.BaseURL }}" class="top">Home</a>