feat: frontend search implementation
1 file changed, 13 insertions(+), 0 deletions(-)
changed files
A frontend/templates/blocks/options.gotmpl
@@ -0,0 +1,13 @@ +{{ define "results" }} + {{ range $opt, $data := .Results }} + <details> + <summary> + {{ $opt }} + </summary> + <p> + {{ $data.Description }} + </p> + </details> + {{ end }} +</div> +{{ end }}