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