From 4eacde9a8c7a98aec55d1992836f0c87b1bd7557 Mon Sep 17 00:00:00 2001 From: Peter Sanchez Date: Tue, 19 Nov 2024 15:53:30 -0600 Subject: [PATCH] Fixing double entry bug on listing view --- cmd/list/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/list/main.go b/cmd/list/main.go index 79cc818..24ab79f 100644 --- a/cmd/list/main.go +++ b/cmd/list/main.go @@ -121,6 +121,7 @@ func run() error { }) srv.TemplateAllowOverride( "seoData", + "hideNav", ) err = srv.LoadTemplatesFS(links.TemplateFS, "templates/base.html", "templates/listing_detail.html") if err != nil { -- 2.45.2