moviewyrm/bookwyrm/templates/opensearch.xml

26 lines
836 B
XML
Raw Normal View History

2021-09-10 23:47:59 +00:00
{% load i18n %}
{% load static %}
<?xml version="1.0" encoding="UTF-8"?>
2021-09-28 02:05:13 +00:00
<OpenSearchDescription
xmlns="http://a9.com/-/spec/opensearch/1.1/"
xmlns
moz="http://www.mozilla.org/2006/browser/search/"
>
2021-09-10 23:47:59 +00:00
<ShortName>BW</ShortName>
2021-09-28 02:05:13 +00:00
<Description>{% blocktrans trimmed with site_name=site.name %}
{{ site_name }} search
{% endblocktrans %}</Description>
2021-09-10 23:47:59 +00:00
<InputEncoding>UTF-8</InputEncoding>
2021-09-28 02:05:13 +00:00
<Image
width="16"
height="16"
type="image/x-icon"
>{% if site.favicon %}
{% get_media_prefix %}{{ site.favicon }}{% else %}{% static "images/favicon.ico" %}
{% endif %}</Image>
2021-09-10 23:47:59 +00:00
<Url type="text/html" template="{% url 'search' %}">
<Param name="q" value="{searchTerms}"/>
</Url>
<moz:SearchForm>{% url 'search' %}</moz:SearchForm>
</OpenSearchDescription>