gonotes/templates/list.tmpl.html

12 lines
394 B
HTML

{{define "title"}}All Notes{{end}}
{{define "main"}}
<div class="list-group list-group-flush">
{{range $title := .titles}}
<a class="list-group-item list-group-item-action d-flex justify-content-between"
href="{{$title}}/">
<span>{{$title}}</span>
<img src="/static/icons/pencil-square.svg" alt="Edit">
</a>
{{end}}
</div>
{{end}}