diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-08-27 22:08:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-27 22:08:58 +0200 |
| commit | 3043c404e42901a1234d150e43daee99810b46f5 (patch) | |
| tree | 853a41827fe4ee4bc030a50e91e0155c5f561286 /searx/templates | |
| parent | b72aec0a9b2b548d7f6a8ddecedd58f5392b8372 (diff) | |
| parent | 0056c4035e80c7899985dcb38d8d4d1570ac514b (diff) | |
Merge pull request #671 from kvch/custom-404
Custom 404 message - fixes #317
Diffstat (limited to 'searx/templates')
| -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 |
4 files changed, 28 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 %} |