mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<fieldset>{{- '' -}}
 | 
						|
  <legend id="pref_theme">{{- _('Theme') -}}</legend>{{- '' -}}
 | 
						|
  <div class="value">{{- '' -}}
 | 
						|
    <select name="theme" aria-labelledby="pref_theme">{{- '' -}}
 | 
						|
      {%- for name in themes -%}
 | 
						|
        <option value="{{ name }}"
 | 
						|
                {%- if name == theme %} selected="selected"{%- endif -%}>
 | 
						|
                {{- name | capitalize -}}
 | 
						|
        </option>
 | 
						|
      {%- endfor -%}
 | 
						|
    </select>{{- '' -}}
 | 
						|
  </div>{{- '' -}}
 | 
						|
  <div class="description">
 | 
						|
    {{- _('Change SearXNG layout') -}}
 | 
						|
  </div>{{- '' -}}
 | 
						|
</fieldset>{{- '' -}}
 | 
						|
 | 
						|
<fieldset>{{- '' -}}
 | 
						|
  <legend id="pref_simple_style">{{- _('Theme style') -}}</legend>{{- '' -}}
 | 
						|
  <div class="value">{{- '' -}}
 | 
						|
    <select name="simple_style" aria-labelledby="pref_simple_style">
 | 
						|
      {%- for name in ['auto', 'light', 'dark'] -%}
 | 
						|
        <option value="{{ name }}"
 | 
						|
                {%- if name == preferences.get_value('simple_style') %} selected="selected" {%- endif -%}>
 | 
						|
                {{- _(name) | capitalize -}}
 | 
						|
        </option>
 | 
						|
      {%- endfor -%}
 | 
						|
    </select>{{- '' -}}
 | 
						|
  </div>{{- '' -}}
 | 
						|
  <div class="description">
 | 
						|
    {{- _('Choose auto to follow your browser settings') -}}
 | 
						|
  </div>{{- '' -}}
 | 
						|
</fieldset>{{- '' -}}
 | 
						|
 | 
						|
{%- include 'simple/preferences/center_alignment.html' -%}
 |