From f621d4b7041c5249bc5cb9afb77fa0989b5df160 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 22 Nov 2019 14:20:18 +0200 Subject: [PATCH] Override previous-next-link partial Remove title case. See: #55 --- layouts/partials/previous-next-links.html | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 layouts/partials/previous-next-links.html diff --git a/layouts/partials/previous-next-links.html b/layouts/partials/previous-next-links.html new file mode 100644 index 0000000..5ff7a27 --- /dev/null +++ b/layouts/partials/previous-next-links.html @@ -0,0 +1,25 @@ +{{if .Prev }} + + {{ partial "svg/ic_chevron_left_black_24px.svg" (dict "size" "30px") }} {{ .Prev.Params.name}} + +{{end}} + +{{if .Next }} + + {{ .Next.Params.name }} {{ partial "svg/ic_chevron_right_black_24px.svg" (dict "size" "30px") }} + +{{end}} + + + -- GitLab