remove searchbar from error pages

This commit is contained in:
Christoph J. Scherr 2023-06-06 22:29:05 +02:00
parent 7a26ceae3e
commit 90f69ab886
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
4 changed files with 0 additions and 16 deletions

View File

@ -8,8 +8,4 @@
<h1>400 {% translate "Bad request" %}</h1>
<p>{% translate "You sent bad data to the server." %}</p>
</div>
<div class="container text-center jumbotron my-5" py-5>
<h1 class="my-4">{% translate "Looking for anything specific?" %}</h1>
{% include 'main_search_form.html' %}
</div>
{% endblock main %}

View File

@ -8,8 +8,4 @@
<h1>403 {% translate "Permission denied" %}</h1>
<p>{% translate "You are not allowed to access this page." %}</p>
</div>
<div class="container text-center jumbotron my-5" py-5>
<h1 class="my-4">{% translate "Looking for anything specific?" %}</h1>
{% include 'main_search_form.html' %}
</div>
{% endblock main %}

View File

@ -8,8 +8,4 @@
<h1>404 {% translate "Not found" %}</h1>
<p>{% translate "The resource you are looking for does not exist." %}</p>
</div>
<div class="container text-center jumbotron my-5" py-5>
<h1 class="my-4">{% translate "Looking for anything specific?" %}</h1>
{% include 'main_search_form.html' %}
</div>
{% endblock main %}

View File

@ -8,8 +8,4 @@
<h1>500 {% translate "Internal Server Error" %}</h1>
<p>{% translate "Something went wrong." %}</p>
</div>
<div class="container text-center jumbotron my-5" py-5>
<h1 class="my-4">{% translate "Looking for anything specific?" %}</h1>
{% include 'main_search_form.html' %}
</div>
{% endblock main %}