searxng-beetroot/beetroot_template/result_templates/products.html

15 lines
674 B
HTML
Raw Normal View History

2023-04-04 21:23:00 +02:00
{% from 'beetroot/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %}
2023-03-19 10:58:17 +01:00
{{ result_header(result, favicons, image_proxify) -}}
{{- result_sub_header(result) -}}
{% if result.price %}<div class="result_price">{{ result.price }}</div></br>{% endif %}
{% if result.shipping %}<div class="result_shipping">{{ result.shipping }}</div></br>{% endif %}
{% if result.source_country %}<div class="result_source_country">{{ result.source_country }}</div></br>{% endif %}
{%- if result.content %}
<p class="content">
{{ result.content }}
</p>
{% endif -%}
{{- result_sub_footer(result, proxify) -}}
{{- result_footer(result) }}