diff --git a/searx/templates/simple/macros.html b/searx/templates/simple/macros.html index c3e3a9b84..8941b6820 100644 --- a/searx/templates/simple/macros.html +++ b/searx/templates/simple/macros.html @@ -67,3 +67,13 @@ class="checkbox-onoff"{{- ' ' -}} {%- if checked -%} checked{%- endif -%}/> {%- endmacro -%} + + +{%- macro iframe(iframe_src) -%} + +{%- endmacro -%} diff --git a/searx/templates/simple/result_templates/default.html b/searx/templates/simple/result_templates/default.html index 82d902933..f678c0c52 100644 --- a/searx/templates/simple/result_templates/default.html +++ b/searx/templates/simple/result_templates/default.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} +{% from 'simple/macros.html' import iframe, result_header, result_sub_header, result_sub_footer, result_footer with context %} {{ result_header(result, favicons, image_proxify) -}} {{- result_sub_header(result) -}} @@ -17,7 +17,7 @@ {{- result_sub_footer(result) -}} {% if result.iframe_src -%} {%- endif %} {% if result.audio_src -%} diff --git a/searx/templates/simple/result_templates/videos.html b/searx/templates/simple/result_templates/videos.html index dcd127679..a336c25ed 100644 --- a/searx/templates/simple/result_templates/videos.html +++ b/searx/templates/simple/result_templates/videos.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} +{% from 'simple/macros.html' import iframe, result_header, result_sub_header, result_sub_footer, result_footer with context %} {{ result_header(result, favicons, image_proxify) }} {{ result_sub_header(result) }} @@ -18,11 +18,7 @@ {{- result_sub_footer(result) -}} {% if result.iframe_src -%} {%- endif %} {{ result_footer(result) }}