buuf-nestort/beetroot_template/macros.html

4.5 KiB

{% macro icon(action) -%} {%- endmacro %} {% macro draw_favicon(favicon) -%} {{ favicon }} {%- endmacro %} {%- macro result_link(url, title, classes='', id='') -%} {{ title }} {%- endmacro -%} {% macro result_header(result, favicons, id) -%}

{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}{% if result.url %}{{ result_link(result.url, result.title|safe, id=id) }}{% else %}{{ result.title|safe}}{% endif %}

{%- endmacro %} {% macro result_sub_header(result, id) -%} {% if result.publishedDate %}{% endif %} {% if result.magnetlink %} • {{ result_link(result.magnetlink, icon('magnet') + _('magnet link'), "magnetlink", id) }}{% endif %} {% if result.torrentfile %} • {{ result_link(result.torrentfile, icon('download-alt') + _('torrent file'), "torrentfile", id) }}{% endif %} {%- endmacro %} {% macro result_footer(result, id) -%}
{{- "" -}}
{%- for engine in result.engines -%} {{ engine }} {%- endfor -%} {%- if result.url -%} {{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info", id) }} {%- endif -%} {%- if proxify -%} {{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info", id) }} {%- endif -%}
{%- if result.pretty_url -%}
{{ result.pretty_url }}
{%- endif -%} {%- endmacro %} {% macro result_footer_rtl(result, id) -%}
{{- "" -}} {% for engine in result.engines -%} {{ engine }} {%- endfor %} {%- if result.url -%} {{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info", id) }} {%- endif -%} {% if proxify -%} {{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info", id) }} {%- endif %} {%- if result.pretty_url -%}
{{ result.pretty_url }}
{%- endif %} {%- endmacro %} {% macro preferences_item_header(info, label, rtl, id) -%} {% if rtl %}
{{ info }}
{% else %}
{% endif %} {%- endmacro %} {% macro preferences_item_footer(info, label, rtl) -%} {% if rtl %}
{% else %}
{{ info }}
{% endif %} {%- endmacro %} {% macro checkbox_toggle(id, blocked) -%}
{%- endmacro %} {% macro support_toggle(supports) -%} {% if supports %} {{ _("supported") }} {% else %} {{ _("not supported") }} {% endif %} {%- endmacro %}