libremiami-search/searx/templates/oscar/base.html

4.9 KiB
Raw Blame History

{% from 'oscar/macros.html' import icon %} <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"{% if rtl %} dir="rtl"{% endif %}> <head> {% block meta %}{% endblock %} {% if preferences.get_value('oscar-style') -%} {{' '}} {%- else -%} {{' '}} {%- endif %} {%- for css in styles %} {% endfor %} {% block styles %} {% endblock %} {% block head %} {% endblock %} </head> {% include 'oscar/navbar.html' %}
{% if errors %}
{{ _('Close') }} {{ icon('info-sign') }} {{ _('Error!') }}
    {% for message in errors %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% block site_alert_error %} {% endblock %} {% block site_alert_warning %} {% endblock %} {% block site_alert_info %} {% endblock %} {% block site_alert_success %} {% endblock %} {% block content %} {% endblock %}
{% block footer %} {% endblock %}

{{ _('Powered by') }} searx - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}
{{ _('Source code') }} | {{ _('Issue tracker') }} | {{ _('Public instances') }}

{% if autocomplete %} {% endif %} {% for script in scripts %} {{""}} {% endfor %} </html>