diff options
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"> |
