| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  |  | <html class="no-js" lang="en" {% if rtl %} dir="rtl"{% endif %}> | 
					
						
							|  |  |  |  | <head> | 
					
						
							|  |  |  |  |   <meta charset="UTF-8" /> | 
					
						
							|  |  |  |  |   <meta name="description" content="searx - a privacy-respecting, hackable metasearch engine"> | 
					
						
							|  |  |  |  |   <meta name="keywords" content="searx, search, search engine, metasearch, meta search"> | 
					
						
							|  |  |  |  |   <meta name="generator" content="searx/{{ searx_version }}"> | 
					
						
							|  |  |  |  |   <meta name="referrer" content="no-referrer"> | 
					
						
							|  |  |  |  |   <meta name="robots" content="noarchive"> | 
					
						
							|  |  |  |  |   <meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=1"> | 
					
						
							|  |  |  |  |   <meta name="HandheldFriendly" content="True"> | 
					
						
							|  |  |  |  |   <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"> | 
					
						
							| 
									
										
										
										
											2019-04-09 21:15:02 +02:00
										 |  |  |  |   <title>{% block title %}{% endblock %}{{ instance_name }}</title> | 
					
						
							| 
									
										
										
										
											2019-07-23 14:13:38 +02:00
										 |  |  |  |   {% block meta %}{% endblock %} | 
					
						
							| 
									
										
										
										
											2020-06-15 18:25:05 +02:00
										 |  |  |  |   <script src="{{ url_for('js_translations') }}"></script> | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |  |   {% if rtl %} | 
					
						
							|  |  |  |  |   <link rel="stylesheet" href="{{ url_for('static', filename='css/searx-rtl.min.css') }}" type="text/css" media="screen" /> | 
					
						
							|  |  |  |  |   {% else %} | 
					
						
							|  |  |  |  |   <link rel="stylesheet" href="{{ url_for('static', filename='css/searx.min.css') }}" type="text/css" media="screen" /> | 
					
						
							|  |  |  |  |   {% endif %} | 
					
						
							|  |  |  |  |   {% block styles %}{% endblock %} | 
					
						
							| 
									
										
										
										
											2019-07-23 14:13:38 +02:00
										 |  |  |  |   <!--[if gte IE 9]>--> | 
					
						
							|  |  |  |  |   <script src="{{ url_for('static', filename='js/searx.head.min.js') }}" | 
					
						
							|  |  |  |  |           data-method="{{ method or 'POST' }}" | 
					
						
							|  |  |  |  |           data-autocompleter="{% if autocomplete %}true{% else %}false{% endif %}" | 
					
						
							|  |  |  |  |           data-search-on-category-select="{{ 'true' if 'plugins/js/search_on_category_select.js' in scripts else 'false'}}" | 
					
						
							|  |  |  |  |           data-infinite-scroll="{{ 'true' if 'plugins/js/infinite_scroll.js' in scripts else 'false' }}" | 
					
						
							|  |  |  |  |           data-static-path="{{ url_for('static', filename='themes/simple') }}/" | 
					
						
							|  |  |  |  |           data-no-item-found="{{ _('No item found') }}"></script> | 
					
						
							|  |  |  |  |   <!--<![endif]--> | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |  |   {% block head %} | 
					
						
							|  |  |  |  |   <link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/> | 
					
						
							|  |  |  |  |   {% endblock %} | 
					
						
							|  |  |  |  |   <link rel="shortcut icon" href="{{ url_for('static', filename='img/favicon.png') }}" /> | 
					
						
							|  |  |  |  | </head> | 
					
						
							| 
									
										
										
										
											2020-06-04 19:20:44 +02:00
										 |  |  |  | <body class="{{ endpoint }}_endpoint" > | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |  |   <main id="main_{{  self._TemplateReference__context.name|replace("simple/", "")|replace(".html", "") }}"> | 
					
						
							|  |  |  |  |     {% if errors %} | 
					
						
							|  |  |  |  |         <div class="dialog-error" role="alert"> | 
					
						
							|  |  |  |  |             <a href="#" class="close" aria-label="close" title="close">×</a> | 
					
						
							|  |  |  |  |             <ul> | 
					
						
							|  |  |  |  |             {% for message in errors %} | 
					
						
							|  |  |  |  |                 <li>{{ message }}</li> | 
					
						
							|  |  |  |  |             {% endfor %} | 
					
						
							|  |  |  |  |             </ul> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  |     {% endif %} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     {% block content %} | 
					
						
							|  |  |  |  |     {% endblock %} | 
					
						
							|  |  |  |  |   </main> | 
					
						
							|  |  |  |  |   <footer> | 
					
						
							| 
									
										
										
										
											2017-12-08 21:37:22 +01:00
										 |  |  |  |     <p> | 
					
						
							| 
									
										
										
										
											2017-12-09 15:19:39 +01:00
										 |  |  |  |     {{ _('Powered by') }} <a href="{{ url_for('about') }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> | 
					
						
							| 
									
										
										
										
											2020-03-25 11:49:33 +01:00
										 |  |  |  |         <a href="{{ brand.GIT_URL }}">{{ _('Source code') }}</a> | | 
					
						
							| 
									
										
										
										
											2020-03-25 17:48:34 +01:00
										 |  |  |  |         <a href="{{ brand.ISSUE_URL }}">{{ _('Issue tracker') }}</a> | | 
					
						
							| 
									
										
										
										
											2020-03-25 11:49:33 +01:00
										 |  |  |  |         <a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a> | 
					
						
							| 
									
										
										
										
											2017-12-08 21:37:22 +01:00
										 |  |  |  |     </p> | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |  |   </footer> | 
					
						
							|  |  |  |  |   <!--[if gte IE 9]>--> | 
					
						
							| 
									
										
										
										
											2019-07-23 14:13:38 +02:00
										 |  |  |  |   <script src="{{ url_for('static', filename='js/searx.min.js') }}"></script> | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |  |   <!--<![endif]--> | 
					
						
							|  |  |  |  | </body> | 
					
						
							|  |  |  |  | </html> |