diff options
Diffstat (limited to 'searx/templates/simple')
| -rw-r--r-- | searx/templates/simple/base.html | 11 | ||||
| -rw-r--r-- | searx/templates/simple/index.html | 3 | ||||
| -rw-r--r-- | searx/templates/simple/preferences.html | 10 | ||||
| -rw-r--r-- | searx/templates/simple/result_templates/code.html | 2 | ||||
| -rw-r--r-- | searx/templates/simple/result_templates/default.html | 2 | ||||
| -rw-r--r-- | searx/templates/simple/result_templates/map.html | 2 | ||||
| -rw-r--r-- | searx/templates/simple/result_templates/products.html | 2 | ||||
| -rw-r--r-- | searx/templates/simple/result_templates/torrent.html | 2 | ||||
| -rw-r--r-- | searx/templates/simple/result_templates/videos.html | 2 |
9 files changed, 24 insertions, 12 deletions
diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html index d8eaaa02b..c40183fdd 100644 --- a/searx/templates/simple/base.html +++ b/searx/templates/simple/base.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html class="no-js theme-{{ preferences.get_value('simple_style') or 'auto' }}" lang="{{ locale_rfc5646 }}" {% if rtl %} dir="rtl"{% endif %}> +<html class="no-js theme-{{ preferences.get_value('simple_style') or 'auto' }} center-aligment-{{ preferences.get_value('center_aligment') and 'yes' or 'no' }}" lang="{{ locale_rfc5646 }}" {% if rtl %} dir="rtl"{% endif %}> <head> <meta charset="UTF-8" /> <meta name="description" content="SearXNG — a privacy-respecting, hackable metasearch engine"> @@ -55,8 +55,13 @@ <a href="{{ searx_git_url }}">{{ _('Source code') }}</a> | <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue tracker') }}</a> | <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a> | - <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a>{% if get_setting('general.contact_url') %} | - <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a>{% endif %} + <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a> + {% if get_setting('general.privacypolicy_url') %} + | <a href="{{ get_setting('general.privacypolicy_url') }}">{{ _('Privacy policy') }}</a> + {% endif %} + {% if get_setting('general.contact_url') %} + | <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a> + {% endif %} </p> </footer> <!--[if gte IE 9]>--> diff --git a/searx/templates/simple/index.html b/searx/templates/simple/index.html index 5a83e10a0..5c207bbd9 100644 --- a/searx/templates/simple/index.html +++ b/searx/templates/simple/index.html @@ -1,8 +1,5 @@ {% extends "simple/base.html" %} {% from 'simple/icons.html' import icon_big %} -{% block meta %} - <link rel="preload" href="{{ url_for('static', filename='img/searxng.png') }}" as="image" /> -{% endblock %} {% block content %} <div class="index"> <div class="title"><h1>SearXNG</h1></div> diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 4dde6fec2..aa0e65e28 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -213,6 +213,16 @@ </p> <div class="description">{{ _('Choose auto to follow your browser settings') }}</div> </fieldset> + <fieldset> + <legend id="pref_center_aligment">{{ _('Center Alignment') }}</legend> + <p class="value"> + <select name="center_aligment" aria-labelledby="pref_center_aligment"> + <option value="1" {% if preferences.get_value('center_aligment') %}selected="selected"{% endif %}>{{ _('On') }}</option> + <option value="0" {% if not preferences.get_value('center_aligment') %}selected="selected"{% endif %}>{{ _('Off')}}</option> + </select> + </p> + <div class="description">{{ _('Displays results in the center of the page (Oscar layout).') }}</div> + </fieldset> {% endif %} {% if 'results_on_new_tab' not in locked_preferences %} <fieldset> diff --git a/searx/templates/simple/result_templates/code.html b/searx/templates/simple/result_templates/code.html index 54bee0fbf..3fe429caa 100644 --- a/searx/templates/simple/result_templates/code.html +++ b/searx/templates/simple/result_templates/code.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl with context %} +{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} {{ result_header(result, favicons, image_proxify) -}} {{- result_sub_header(result) -}} diff --git a/searx/templates/simple/result_templates/default.html b/searx/templates/simple/result_templates/default.html index 1f2074ef4..263c19a36 100644 --- a/searx/templates/simple/result_templates/default.html +++ b/searx/templates/simple/result_templates/default.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl with context %} +{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} {{ result_header(result, favicons, image_proxify) -}} {{- result_sub_header(result) -}} diff --git a/searx/templates/simple/result_templates/map.html b/searx/templates/simple/result_templates/map.html index 3492d5d5f..e1223cbc0 100644 --- a/searx/templates/simple/result_templates/map.html +++ b/searx/templates/simple/result_templates/map.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl with context %} +{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} {% from 'simple/icons.html' import icon_small %} {{ result_header(result, favicons, image_proxify) -}} diff --git a/searx/templates/simple/result_templates/products.html b/searx/templates/simple/result_templates/products.html index c49f29ecb..0a9bbf03a 100644 --- a/searx/templates/simple/result_templates/products.html +++ b/searx/templates/simple/result_templates/products.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl with context %} +{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} {{ result_header(result, favicons, image_proxify) -}} {{- result_sub_header(result) -}} diff --git a/searx/templates/simple/result_templates/torrent.html b/searx/templates/simple/result_templates/torrent.html index ecca0fdec..46cde2a65 100644 --- a/searx/templates/simple/result_templates/torrent.html +++ b/searx/templates/simple/result_templates/torrent.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl, result_link with context %} +{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_link with context %} {{ result_header(result, favicons, image_proxify) -}} {{- result_sub_header(result) -}} diff --git a/searx/templates/simple/result_templates/videos.html b/searx/templates/simple/result_templates/videos.html index bfff48d2d..969f87a4d 100644 --- a/searx/templates/simple/result_templates/videos.html +++ b/searx/templates/simple/result_templates/videos.html @@ -1,4 +1,4 @@ -{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer, result_footer_rtl with context %} +{% from 'simple/macros.html' import result_header, result_sub_header, result_sub_footer, result_footer with context %} {{ result_header(result, favicons, image_proxify) }} {{ result_sub_header(result) }} |