Add some bottom margin to main container
This commit is contained in:
parent
a955c49373
commit
30a2bd5d72
2 changed files with 1 additions and 2 deletions
|
|
@ -76,7 +76,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="container">
|
<div class="container mb-5">
|
||||||
<div class="row justify-content-md-center">
|
<div class="row justify-content-md-center">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h1>{{template "title" .}}</h1>
|
<h1>{{template "title" .}}</h1>
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,6 @@ func save(w http.ResponseWriter, r *http.Request) {
|
||||||
title := r.FormValue("title")
|
title := r.FormValue("title")
|
||||||
body := r.FormValue("body")
|
body := r.FormValue("body")
|
||||||
|
|
||||||
log.Printf("About to save to note %+v", note)
|
|
||||||
note.Title = title
|
note.Title = title
|
||||||
note.Body = []byte(body)
|
note.Body = []byte(body)
|
||||||
note.Save()
|
note.Save()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue