diff options
| author | Matej Cotman <cotman.matej@gmail.com> | 2014-04-24 23:46:40 +0000 |
|---|---|---|
| committer | Matej Cotman <cotman.matej@gmail.com> | 2014-06-05 13:18:22 +0200 |
| commit | 08eaffe245303818069df3332eece11f41a0bd8e (patch) | |
| tree | 9a111cc283b644de9f9df306c531644e8421e283 /searx/templates/default/opensearch_response_rss.xml | |
| parent | 3386e21cdf30bf0accb84e2dcc4dea0076af1b90 (diff) | |
add multi theming support
Diffstat (limited to 'searx/templates/default/opensearch_response_rss.xml')
| -rw-r--r-- | searx/templates/default/opensearch_response_rss.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/searx/templates/default/opensearch_response_rss.xml b/searx/templates/default/opensearch_response_rss.xml new file mode 100644 index 000000000..5673eb2e1 --- /dev/null +++ b/searx/templates/default/opensearch_response_rss.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<rss version="2.0" + xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" + xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Searx search: {{ q }}</title> + <link>{{ base_url }}?q={{ q }}</link> + <description>Search results for "{{ q }}" - searx</description> + <opensearch:totalResults>{{ number_of_results }}</opensearch:totalResults> + <opensearch:startIndex>1</opensearch:startIndex> + <opensearch:itemsPerPage>{{ number_of_results }}</opensearch:itemsPerPage> + <atom:link rel="search" type="application/opensearchdescription+xml" href="{{ base_url }}opensearch.xml"/> + <opensearch:Query role="request" searchTerms="{{ q }}" startPage="1" /> + {% for r in results %} + <item> + <title>{{ r.title }}</title> + <link>{{ r.url }}</link> + <description>{{ r.content }}</description> + {% if r.pubdate %}<pubDate>{{ r.pubdate }}</pubDate>{% endif %} + </item> + {% endfor %} + </channel> +</rss> |