gonotes/internal/conf/templates/list.tmpl.html

13 lines
390 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-06-27 22:56:50 +01:00
{{range $note := .notes}}
2025-06-24 22:37:47 +01:00
<a class="list-group-item list-group-item-action d-flex justify-content-between"
2025-07-29 12:44:01 +01:00
href="{{$note.URL}}/">
2025-06-27 22:56:50 +01:00
<span>{{$note.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}}