|
@@ -1,7 +1,7 @@
|
|
|
<!DOCTYPE html>
|
|
|
<html class="no-js theme-{{ preferences.get_value('simple_style') or 'auto' }} center-aligment-{{ preferences.get_value('center_alignment') and 'yes' or 'no' }}" lang="{{ locale_rfc5646 }}" {% if rtl %} dir="rtl"{% endif %}>
|
|
|
<head>
|
|
|
- <meta charset="UTF-8" />
|
|
|
+ <meta charset="UTF-8">
|
|
|
<meta name="description" content="SearXNG — a privacy-respecting, open metasearch engine">
|
|
|
<meta name="keywords" content="SearXNG, search, search engine, metasearch, meta search">
|
|
|
<meta name="generator" content="searxng/{{ searx_version }}">
|
|
@@ -13,23 +13,23 @@
|
|
|
<title>{% block title %}{% endblock %}{{ instance_name }}</title>
|
|
|
{% block meta %}{% endblock %}
|
|
|
{% if rtl %}
|
|
|
- <link rel="stylesheet" href="{{ url_for('static', filename='css/searxng-rtl.min.css') }}" type="text/css" media="screen" />
|
|
|
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/searxng-rtl.min.css') }}" type="text/css" media="screen">
|
|
|
{% else %}
|
|
|
- <link rel="stylesheet" href="{{ url_for('static', filename='css/searxng.min.css') }}" type="text/css" media="screen" />
|
|
|
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/searxng.min.css') }}" type="text/css" media="screen">
|
|
|
{% endif %}
|
|
|
{% if get_setting('server.limiter') or get_setting('server.public_instance') %}
|
|
|
- <link rel="stylesheet" href="{{ url_for('client_token', token=link_token) }}" type="text/css" />
|
|
|
+ <link rel="stylesheet" href="{{ url_for('client_token', token=link_token) }}" type="text/css">
|
|
|
{% endif %}
|
|
|
{% block styles %}{% endblock %}
|
|
|
<!--[if gte IE 9]>-->
|
|
|
<script src="{{ url_for('static', filename='js/searxng.head.min.js') }}" client_settings="{{ client_settings }}"></script>
|
|
|
<!--<![endif]-->
|
|
|
{% block head %}
|
|
|
- <link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ opensearch_url }}"/>
|
|
|
+ <link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ opensearch_url }}">
|
|
|
{% endblock %}
|
|
|
<link rel="icon" href="{{ url_for('static', filename='img/favicon.png') }}" sizes="any">
|
|
|
<link rel="icon" href="{{ url_for('static', filename='img/favicon.svg') }}" type="image/svg+xml">
|
|
|
- <link rel="apple-touch-icon" href="{{ url_for('static', filename='img/favicon.png') }}"/>
|
|
|
+ <link rel="apple-touch-icon" href="{{ url_for('static', filename='img/favicon.png') }}">
|
|
|
</head>
|
|
|
<body class="{{ endpoint }}_endpoint" >
|
|
|
<main id="main_{{ self._TemplateReference__context.name|replace("simple/", "")|replace(".html", "") }}" class="{{body_class}}">
|
|
@@ -65,7 +65,7 @@
|
|
|
</main>
|
|
|
<footer>
|
|
|
<p>
|
|
|
- {{ _('Powered by') }} <a href="{{ url_for('info', pagename='about') }}">searxng</a> - {{ searx_version }} — {{ _('a privacy-respecting, open metasearch engine') }}<br/>
|
|
|
+ {{ _('Powered by') }} <a href="{{ url_for('info', pagename='about') }}">searxng</a> - {{ searx_version }} — {{ _('a privacy-respecting, open metasearch engine') }}<br>
|
|
|
<a href="{{ searx_git_url }}">{{ _('Source code') }}</a>
|
|
|
| <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue tracker') }}</a>
|
|
|
{% if enable_metrics %}| <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a>{% endif %}
|