diff options
author | Noemi Vanyi <sitbackandwait@gmail.com> | 2016-08-24 19:53:09 +0200 |
---|---|---|
committer | Noemi Vanyi <sitbackandwait@gmail.com> | 2016-08-24 19:53:09 +0200 |
commit | 0056c4035e80c7899985dcb38d8d4d1570ac514b (patch) | |
tree | 4cd8eeb1204279e797292633c2ba8b5e3dd6ac01 | |
parent | 104cdb7d03771d4eca5b5126532ccf47642bb9de (diff) | |
download | searxng-0056c4035e80c7899985dcb38d8d4d1570ac514b.tar.gz searxng-0056c4035e80c7899985dcb38d8d4d1570ac514b.zip |
add custom 404 page
-rw-r--r-- | searx/templates/courgette/404.html | 7 | ||||
-rw-r--r-- | searx/templates/default/404.html | 7 | ||||
-rw-r--r-- | searx/templates/oscar/404.html | 7 | ||||
-rw-r--r-- | searx/templates/pix-art/404.html | 7 | ||||
-rw-r--r-- | searx/webapp.py | 5 | ||||
-rw-r--r-- | tests/robot/test_basic.robot | 5 |
6 files changed, 38 insertions, 0 deletions
diff --git a/searx/templates/courgette/404.html b/searx/templates/courgette/404.html new file mode 100644 index 000000000..465039e3a --- /dev/null +++ b/searx/templates/courgette/404.html @@ -0,0 +1,7 @@ +{% extends "courgette/base.html" %} +{% block content %} +<div class="center"> + <h1>{{ _('Page not found') }}</h1> + <p>{{ _('Go to <a href="/">search page</a>.') }}</p> +</div> +{% endblock %} diff --git a/searx/templates/default/404.html b/searx/templates/default/404.html new file mode 100644 index 000000000..18012f2ac --- /dev/null +++ b/searx/templates/default/404.html @@ -0,0 +1,7 @@ +{% extends "default/base.html" %} +{% block content %} +<div class="center"> + <h1>{{ _('Page not found') }}</h1> + <p>{{ _('Go to <a href="/">search page</a>.') }}</p> +</div> +{% endblock %} diff --git a/searx/templates/oscar/404.html b/searx/templates/oscar/404.html new file mode 100644 index 000000000..39836ce0e --- /dev/null +++ b/searx/templates/oscar/404.html @@ -0,0 +1,7 @@ +{% extends "oscar/base.html" %} +{% block content %} +<div class="text-center"> + <h1>{{ _('Page not found') }}</h1> + <p>{{ _('Go to <a href="/">search page</a>.') }}</p> +</div> +{% endblock %} diff --git a/searx/templates/pix-art/404.html b/searx/templates/pix-art/404.html new file mode 100644 index 000000000..27e89ae02 --- /dev/null +++ b/searx/templates/pix-art/404.html @@ -0,0 +1,7 @@ +{% extends "pix-art/base.html" %} +{% block content %} +<div class="center"> + <h1>{{ _('Page not found') }}</h1> + <p>{{ _('Go to <a href="/">search page</a>.') }}</p> +</div> +{% endblock %} diff --git a/searx/webapp.py b/searx/webapp.py index 460681b35..e118fee2b 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -715,6 +715,11 @@ def config(): 'default_theme': settings['ui']['default_theme']}) +@app.errorhandler(404) +def page_not_found(e): + return render('404.html') + + def run(): app.run( debug=settings['general']['debug'], diff --git a/tests/robot/test_basic.robot b/tests/robot/test_basic.robot index 4a20d0ba2..4f9b8ae05 100644 --- a/tests/robot/test_basic.robot +++ b/tests/robot/test_basic.robot @@ -9,6 +9,11 @@ Front page Page Should Contain about Page Should Contain preferences +404 page + Go To http://localhost:11111/no-such-page + Page Should Contain Page not found + Page Should Contain Go to search page + About page Click Element link=about Page Should Contain Why use Searx? |