gonotes/templates/list.tmpl.html

13 lines
384 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>
2025-06-25 21:30:18 +01:00
<img src="/static/icons/eye.svg" alt="Edit">
2025-06-24 22:37:47 +01:00
</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}}