From 30a2bd5d72f65f1d2216d944cdb63bd7afffd499 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Thu, 12 Mar 2026 16:32:46 +0000 Subject: [PATCH] Add some bottom margin to main container --- internal/conf/templates/base.tmpl.html | 2 +- internal/notes/views/views.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/conf/templates/base.tmpl.html b/internal/conf/templates/base.tmpl.html index 6d776ff..f327789 100644 --- a/internal/conf/templates/base.tmpl.html +++ b/internal/conf/templates/base.tmpl.html @@ -76,7 +76,7 @@ -
+

{{template "title" .}}

diff --git a/internal/notes/views/views.go b/internal/notes/views/views.go index 0a041d0..8616c27 100644 --- a/internal/notes/views/views.go +++ b/internal/notes/views/views.go @@ -141,7 +141,6 @@ func save(w http.ResponseWriter, r *http.Request) { title := r.FormValue("title") body := r.FormValue("body") - log.Printf("About to save to note %+v", note) note.Title = title note.Body = []byte(body) note.Save()