gonotes/templates/list.tmpl.html

13 lines
394 B
HTML
Raw Normal View History

2025-01-27 22:28:18 +00:00
{{define "title"}}All Notes{{end}}
{{define "main"}}
2025-06-24 22:37:47 +01:00
<div class="list-group list-group-flush">
2025-01-27 22:28:18 +00:00
{{range $title := .titles}}
2025-06-24 22:37:47 +01:00
<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>
2025-01-27 22:28:18 +00:00
{{end}}
2025-06-24 22:37:47 +01:00
</div>
2025-01-27 22:28:18 +00:00
{{end}}