From d8a18e639ea2010c01ee9a0890486ada4e5beb05 Mon Sep 17 00:00:00 2001 From: Phil Bajsicki <phil@bajsicki.com> Date: Sun, 8 Dec 2024 04:10:52 +0100 Subject: [PATCH 1/2] menu? --- assets/scss/general.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/assets/scss/general.scss b/assets/scss/general.scss index fcff373..3bd982b 100644 --- a/assets/scss/general.scss +++ b/assets/scss/general.scss @@ -60,6 +60,15 @@ mark { background: #ddd; } +// Styling for menu + +menu { + margin: auto !important; + text-align: center !important; + width: 100% !important; +} + + /* ------------------------------------------------------------------------ */ /* Styling for listing pages. */ From f9ac8f83c4165711b56221ceb81be70b33e69c32 Mon Sep 17 00:00:00 2001 From: Phil Bajsicki <phil@bajsicki.com> Date: Sun, 8 Dec 2024 04:11:14 +0100 Subject: [PATCH 2/2] nav above copyright? --- layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index f0eff85..ef42d4f 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -10,7 +10,7 @@ This template render single pages {{ partial "content.header.html" . }} {{ partial "toc.html" . }} <section>{{ .Content }}</section> - <section>{{ partial "footer.html" . }}</section> - <section>{{ partial "nav.html" . }}</section> +<section>{{ partial "nav.html" . }}</section> +<section>{{ partial "footer.html" . }}</section> </article> {{ end }}