{{/* bookmarks.html — lectio-web /bookmarks page: the saved book+chapter bookmarks (note + tags), filterable by tag, each with an "open" link back into the reader and its own delete form. A plain page like index.html/settings.html's head; no htmx round trip needed for the list itself (a plain GET with ?tag=), each delete is its own POST form. */}} lectio — bookmarks

← {{.L.NavReader}} {{.L.NavHome}}

{{if not .Items}}

{{.L.WebNoBookmarks}}

{{else}}
{{range .Items}}
{{.Display}} {{.Chapter}}{{if .Verse}}:{{.Verse}}{{end}} {{if .Note}}{{.Note}}{{end}} {{if .Tags}}{{range .Tags}}#{{.}} {{end}}{{end}}
{{end}}
{{end}}