Remove extra space after Home link
Alan Pearce alan@alanpearce.eu
Sun, 29 Oct 2023 11:20:06 +0100
2 files changed, 4 insertions(+), 0 deletions(-)
jump to
M config.toml → config.toml
@@ -34,6 +34,9 @@ x-content-type-options = "nosniff" content-security-policy = "default-src 'none'; img-src 'self'; object-src 'none'; script-src 'self'; style-src 'unsafe-inline'; form-action 'none'; base-uri 'self'; frame-ancestors https://kagi.com;" [[extra.main_menu]] + name = "Home" + url = "/" +[[extra.main_menu]] name = "Posts" url = "/post/" [[extra.main_menu]]
M src/templates.ts → src/templates.ts
@@ -16,6 +16,7 @@ function addMenu( parent: cheerio.Cheerio<cheerio.AnyNode>, child: cheerio.Cheerio<cheerio.AnyNode>, ) { + parent.empty(); for (const link of config.extra.main_menu) { parent.append(child.clone().attr("href", link.url).text(link.name)); }