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

github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian <julian@vantage-design.com>2020-05-11 15:35:51 +0300
committerGitHub <noreply@github.com>2020-05-11 15:35:51 +0300
commit27c3a758a0d9e9ace57323790bfa4161fa1a523e (patch)
tree44653b4384520dd9516027688f9de27cd1dfa128
parent9912a441ec745cfebff66dc670d0ec06c8971381 (diff)
parenta5b5f8d4dc133365364b2c46dd3e6413a940b888 (diff)
Merge pull request #6 from jhollowe/patch-2
Fix minifier error with spacing in next-prev-page
-rw-r--r--layouts/partials/next-prev-page.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/next-prev-page.html b/layouts/partials/next-prev-page.html
index 20c7b93..5a84b3a 100644
--- a/layouts/partials/next-prev-page.html
+++ b/layouts/partials/next-prev-page.html
@@ -38,10 +38,10 @@
<div class="d-flex justify-content-center">
{{- if not $.Site.Params.disableNavChevron -}}
{{- with ($.Scratch.Get "prevPage") -}}
- <a class="p-1 mr-3 d-inline-block text-white" href="{{.RelPermalink}}" title="{{.Title}}"> <i class="fas fa-chevron-left"></i> {{.Title}}</a>
+ <a class="p-1 mr-3 d-inline-block text-white" href="{{.RelPermalink}}" title="{{.Title}}"><i class="fas fa-chevron-left p-1"></i>{{.Title}}</a>
{{ end -}}
{{- with ($.Scratch.Get "nextPage") -}}
- <a class="p-1 ml-3 d-inline-block text-white text-right" href="{{.RelPermalink}}" title="{{.Title}}">{{.Title}} <i class="fas fa-chevron-right"></i></a>
+ <a class="p-1 ml-3 d-inline-block text-white text-right" href="{{.RelPermalink}}" title="{{.Title}}">{{.Title}}<i class="fas fa-chevron-right p-1"></i></a>
{{- end }}
{{- end -}}
</div>