diff options
author | Noémi Ványi <sitbackandwait@gmail.com> | 2020-12-09 17:33:18 +0100 |
---|---|---|
committer | Noémi Ványi <sitbackandwait@gmail.com> | 2020-12-09 20:49:54 +0100 |
commit | 3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa (patch) | |
tree | e87938d67386bb7d0272c14e1902867eeb152676 /searx/templates/simple/macros.html | |
parent | 42a194898baf96e15edeb9268fbec5ecd4423c09 (diff) | |
download | searxng-3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa.tar.gz searxng-3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa.zip |
display if an engine does not support https
Closes #302
Diffstat (limited to 'searx/templates/simple/macros.html')
-rw-r--r-- | searx/templates/simple/macros.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/macros.html b/searx/templates/simple/macros.html index cacbbec9f..1eb42667a 100644 --- a/searx/templates/simple/macros.html +++ b/searx/templates/simple/macros.html @@ -1,6 +1,6 @@ <!-- Draw glyphicon icon from bootstrap-theme --> -{% macro icon(action) -%} - <span class="ion-icon-big ion-{{ action }}"></span> +{% macro icon(action, alt) -%} + <span title="{{ alt }}" class="ion-icon-big ion-{{ action }}"></span> {%- endmacro %} {% macro icon_small(action) -%} |