diff options
Diffstat (limited to 'searx/templates/simple/preferences/center_alignment.html')
| -rw-r--r-- | searx/templates/simple/preferences/center_alignment.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/templates/simple/preferences/center_alignment.html b/searx/templates/simple/preferences/center_alignment.html new file mode 100644 index 000000000..983a3957b --- /dev/null +++ b/searx/templates/simple/preferences/center_alignment.html @@ -0,0 +1,12 @@ +<fieldset>{{- '' -}} + <legend id="pref_center_alignment">{{ _('Center Alignment') }}</legend>{{- '' -}} + <p class="value">{{- '' -}} + <select name="center_alignment" aria-labelledby="pref_center_alignment">{{- '' -}} + <option value="1" {% if preferences.get_value('center_alignment') %}selected="selected"{% endif %}>{{ _('On') }}</option>{{- '' -}} + <option value="0" {% if not preferences.get_value('center_alignment') %}selected="selected"{% endif %}>{{ _('Off')}}</option>{{- '' -}} + </select>{{- '' -}} + </p>{{- '' -}} + <div class="description"> + {{- _('Displays results in the center of the page (Oscar layout).') -}} + </div>{{- '' -}} +</fieldset>{{- '' -}} |