Improvements

single-block-api
Peter Stuifzand 4 years ago
parent 4abe6811d3
commit 1d6956f81c

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

@ -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">`)

@ -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">

Loading…
Cancel
Save