Linkify mailbox list

This commit is contained in:
Simon Ser 2019-12-02 18:29:06 +01:00
parent 39629b0740
commit fce17c9733
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
2 changed files with 1 additions and 4 deletions

View file

@ -5,7 +5,7 @@
<p>Mailboxes:</p>
<ul>
{{range .Mailboxes}}
<li>{{.Name}}</li>
<li><a href="/mailbox/{{.Name}}">{{.Name}}</a></li>
{{end}}
</ul>

View file

@ -1,7 +1,6 @@
package koushin
import (
"fmt"
"html/template"
"io"
@ -12,8 +11,6 @@ type tmpl struct {
t *template.Template
}
var _ = fmt.Printf
func (t *tmpl) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
return t.t.ExecuteTemplate(w, name, data)
}