diff options
| author | Else <else@localhost> | 2026-03-18 15:13:18 +0100 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-03-18 11:23:51 -0400 |
| commit | 44b6a9b7603e88c7d8f7964effb0b408ce5d1e68 (patch) | |
| tree | 63b2611543a53fbd731a4878e2d7a9b1bdef8cf9 /templates | |
| parent | efb9f737fa9f7064601cef71afee7dd74300e908 (diff) | |
| download | omnisearch-44b6a9b7603e88c7d8f7964effb0b408ce5d1e68.tar.gz | |
Surface blocked search engine responses
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/results.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/results.html b/templates/results.html index 1bda9e4..851ea1f 100644 --- a/templates/results.html +++ b/templates/results.html @@ -38,6 +38,21 @@ <aside class="sidebar-spacer"> </aside> <main class="results-container"> + {{if exists engine_warnings}} + <section class="engine-warning-list"> + {{for warning in engine_warnings}} + <article class="engine-warning"> + <strong class="engine-warning-title"> + {{warning[0]}} + </strong> + <p class="engine-warning-copy"> + {{warning[1]}} + </p> + </article> + {{endfor}} + </section> + {{endif}} + {{for result in results}} <div class="result"> <span class="url"> |
