diff --git a/themes/gohugoioTheme/layouts/partials/previous-next-links-in-section-with-title.html b/themes/gohugoioTheme/layouts/partials/previous-next-links-in-section-with-title.html index 68fa81551..fa76846b7 100644 --- a/themes/gohugoioTheme/layouts/partials/previous-next-links-in-section-with-title.html +++ b/themes/gohugoioTheme/layouts/partials/previous-next-links-in-section-with-title.html @@ -1,13 +1,13 @@ {{ if or .PrevInSection .NextInSection }} {{/* this div holds these a tags as a unit for flex-box display */}} -
+
{{if .NextInSection}} - {{ partial "svg/ic_chevron_left_black_24px.svg" (dict "fill" "#0594CB" "size" "12px") }} {{.NextInSection.Title}} + {{ partial "svg/ic_chevron_left_black_24px.svg" (dict "fill" "#fff" "size" "12px") }} {{.NextInSection.Title}} {{end}} {{if .PrevInSection}} - - {{.PrevInSection.Title}} {{ partial "svg/ic_chevron_right_black_24px.svg" (dict "fill" "#0594CB" "size" "12px") }} + + {{.PrevInSection.Title}} {{ partial "svg/ic_chevron_right_black_24px.svg" (dict "fill" "#fff" "size" "12px") }} {{end}}