Theme updates

This commit is contained in:
kvan7 2023-10-31 15:29:31 +00:00
parent 281d0aac91
commit 3980589b77
8 changed files with 30 additions and 26 deletions

View file

@ -1,6 +1,6 @@
<!DOCTYPE html>
<html
class="no-js theme-{{ preferences.get_value('kvanDark_style') or 'dark' }} center-aligment-{{ preferences.get_value('center_alignment') and 'yes' or 'no' }}"
class="no-js theme-{{ preferences.get_value('simple_style') or 'dark' }} center-aligment-{{ preferences.get_value('center_alignment') and 'yes' or 'no' }}"
lang="{{ locale_rfc5646 }}" {% if rtl %} dir="rtl" {% endif %}>
<head>
@ -76,8 +76,8 @@
</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 }}
<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 %}

View file

@ -14,12 +14,12 @@
</div>{{- '' -}}
</fieldset>{{- '' -}}
<!-- <fieldset>{{- '' -}}
<legend id="pref_kvanDark_style">{{- _('Theme style') -}}</legend>{{- '' -}}
<fieldset>{{- '' -}}
<legend id="pref_simple_style">{{- _('Theme style') -}}</legend>{{- '' -}}
<div class="value">{{- '' -}}
<select name="kvanDark_style" aria-labelledby="pref_kvanDark_style">
<select name="simple_style" aria-labelledby="pref_simple_style">
{%- for name in ['auto', 'light', 'dark'] -%}
<option value="{{ name }}" {%- if name==preferences.get_value('kvanDark_style') %} selected="selected" {%-
<option value="{{ name }}" {%- if name==preferences.get_value('simple_style') %} selected="selected" {%-
endif -%}>
{{- _(name) -}}
</option>
@ -29,6 +29,6 @@
<div class="description">
{{- _('Choose auto to follow your browser settings') -}}
</div>{{- '' -}}
</fieldset>{{- '' -}} -->
</fieldset>{{- '' -}}
{%- include 'kvanDark/preferences/center_alignment.html' -%}