mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 10:32:21 +02:00
Merge pull request #671 from kvch/custom-404
Custom 404 message - fixes #317
This commit is contained in:
commit
3043c404e4
6 changed files with 38 additions and 0 deletions
7
searx/templates/courgette/404.html
Normal file
7
searx/templates/courgette/404.html
Normal file
|
@ -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 %}
|
7
searx/templates/default/404.html
Normal file
7
searx/templates/default/404.html
Normal file
|
@ -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 %}
|
7
searx/templates/oscar/404.html
Normal file
7
searx/templates/oscar/404.html
Normal file
|
@ -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 %}
|
7
searx/templates/pix-art/404.html
Normal file
7
searx/templates/pix-art/404.html
Normal file
|
@ -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 %}
|
Loading…
Add table
Add a link
Reference in a new issue