mirror of
https://github.com/searxng/searxng.git
synced 2024-11-26 21:01:01 +00:00
LTR the about page correctly
This commit is contained in:
parent
d4ba97d00d
commit
b5cbbcede4
4 changed files with 3 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'courgette/base.html' %}
|
{% extends 'courgette/base.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'courgette/github_ribbon.html' %}
|
{% include 'courgette/github_ribbon.html' %}
|
||||||
<div class="row">
|
<div class="row"{% if rtl %} dir="ltr"{% endif %}>
|
||||||
<h1>About <a href="{{ url_for('index') }}">searx</a></h1>
|
<h1>About <a href="{{ url_for('index') }}">searx</a></h1>
|
||||||
|
|
||||||
<p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users.
|
<p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'default/base.html' %}
|
{% extends 'default/base.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'default/github_ribbon.html' %}
|
{% include 'default/github_ribbon.html' %}
|
||||||
<div class="row">
|
<div class="row"{% if rtl %} dir="ltr"{% endif %}>
|
||||||
<h1>About <a href="{{ url_for('index') }}">searx</a></h1>
|
<h1>About <a href="{{ url_for('index') }}">searx</a></h1>
|
||||||
|
|
||||||
<p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users.
|
<p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users.
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% block site_alert_warning_nojs %} {% endblock %}
|
{% block site_alert_warning_nojs %} {% endblock %}
|
||||||
{% block title %}{{ _('about') }} - {% endblock %}
|
{% block title %}{{ _('about') }} - {% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div>
|
<div{% if rtl %} dir="ltr"{% endif %}>
|
||||||
<h1>About <a href="{{ url_for('index') }}">searx</a></h1>
|
<h1>About <a href="{{ url_for('index') }}">searx</a></h1>
|
||||||
|
|
||||||
<p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users.
|
<p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="{{ url_for('preferences') }}">search engines</a> while not storing information about its users.
|
||||||
|
|
|
@ -412,7 +412,6 @@ def about():
|
||||||
"""Render about page"""
|
"""Render about page"""
|
||||||
return render(
|
return render(
|
||||||
'about.html',
|
'about.html',
|
||||||
rtl=False,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue