Improvements

This commit is contained in:
Peter Stuifzand 2020-05-07 14:15:36 +02:00
parent 4abe6811d3
commit 1d6956f81c
4 changed files with 9 additions and 1 deletions

2
.editorconfig Normal file
View File

@ -0,0 +1,2 @@
[*.go]
indent_size = 8

View File

@ -142,6 +142,8 @@ func (checklist *Checklist) Render(w io.Writer) error {
buf.WriteString(`<span class="icon is-medium">`)
if item.Checked {
buf.WriteString(`<i class="fa fa-check-circle has-text-success"></i>`)
} else {
buf.WriteString(`<i class="fa fa-circle-thin"></i>`)
}
buf.WriteString(`</span>`)
buf.WriteString(`<div class="checklist--item-text">`)

View File

@ -1,3 +1,7 @@
{{ define "navbar" }}
<a href="/{{ .Name }}" class="navbar-item">Back</a>
{{ end }}
{{define "content"}}
<h1 class="title">{{ .Title }}</h1>
<form action="/save/" method="post">

View File

@ -11,4 +11,4 @@
</section>
<hr/>
{{ end }}
{{ end }}
{{ end }}