From a27d93e0987b4775ccae1bf9d809b5315738a826 Mon Sep 17 00:00:00 2001 From: Jack Hickey <133868041+nginx-jack@users.noreply.github.com> Date: Fri, 4 Jul 2025 10:13:07 +0100 Subject: [PATCH] Content: Remove next prev arrows --- layouts/_default/single.html | 2 -- ...evious-next-links-in-section-with-title.html | 17 ----------------- .../previous-next-links-in-section.html | 16 ---------------- 3 files changed, 35 deletions(-) delete mode 100644 layouts/partials/previous-next-links-in-section-with-title.html delete mode 100644 layouts/partials/previous-next-links-in-section.html diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 0b80cba..9c5837b 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -32,8 +32,6 @@

{{ .Title }}

{{ partial "version-list" . }} {{ partial "qualtrics-feedback.html" }} - {{ partial "previous-next-links-in-section-with-title.html" . }} - diff --git a/layouts/partials/previous-next-links-in-section-with-title.html b/layouts/partials/previous-next-links-in-section-with-title.html deleted file mode 100644 index 16168a7..0000000 --- a/layouts/partials/previous-next-links-in-section-with-title.html +++ /dev/null @@ -1,17 +0,0 @@ -{{ if or .PrevInSection .NextInSection }} -{{/* this div holds these a tags as a unit for flex-box display */}} - -
- -
-{{ end }} \ No newline at end of file diff --git a/layouts/partials/previous-next-links-in-section.html b/layouts/partials/previous-next-links-in-section.html deleted file mode 100644 index 01ce27b..0000000 --- a/layouts/partials/previous-next-links-in-section.html +++ /dev/null @@ -1,16 +0,0 @@ -{{ if or .PrevInSection .NextInSection }} -{{/* this div holds these a tags as a unit for flex-box display */}} -
- {{if .NextInSection}} - - {{ partial "svg/arrow-button-left.svg" (dict "fill" "#0594CB" "size" "30px") }} - - {{end}} - - {{if .PrevInSection}} - - {{ partial "svg/arrow-button-right.svg" (dict "fill" "#0594CB" "size" "30px") }} - - {{end}} -
-{{ end }} \ No newline at end of file