aboutsummaryrefslogtreecommitdiff
path: root/internal/web/templates/lookup.html
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 20:46:17 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 20:46:17 +0200
commit0b47572bc0addc5f59ebac3e70278ea435097565 (patch)
treea04a3a3afb2c074b2f714f396506dc5bb4f5cbca /internal/web/templates/lookup.html
parent734eb4f3aec4e3c10064c7af4bd8e33c64ad07a7 (diff)
downloadlectio-0b47572bc0addc5f59ebac3e70278ea435097565.tar.gz
lectio-0b47572bc0addc5f59ebac3e70278ea435097565.zip
web: theme control boxes, one default version, drop search bar; traditional drops pl + all=readings-only
Diffstat (limited to 'internal/web/templates/lookup.html')
-rw-r--r--internal/web/templates/lookup.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/internal/web/templates/lookup.html b/internal/web/templates/lookup.html
deleted file mode 100644
index c8bc2a7..0000000
--- a/internal/web/templates/lookup.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{{/* lookup.html renders the passage-lookup fragment: one .column per
- requested version, each version's matched bible.Verse rows plus any
- sub-refs the corpus had no entry for. Structurally mirrors
- readings.html's .columns/.column/.block classes so theme CSS restyles
- both panes the same way. */}}
-{{if .}}
-<div class="columns">
- {{range .}}
- <div class="column">
- <h3 class="version-label">{{.Version}}</h3>
- {{range .Verses}}
- <p class="block verse"><span class="vnum">{{.Chapter}}:{{.Verse}}</span> {{.Text}}</p>
- {{end}}
- {{if .Missing}}
- <p class="block error">brak: {{range $i, $m := .Missing}}{{if $i}}, {{end}}{{$m}}{{end}}</p>
- {{end}}
- </div>
- {{end}}
-</div>
-{{end}}