17 lines
543 B
HTML
17 lines
543 B
HTML
{% extends 'base.html' %} <!-- Add this for inheritance -->
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Oops, sorry, bad request (400)" %}{% endblock %}
|
|
{% block pagetitle %}<span style="color:red">{% trans "Oops, sorry, bad request (400)" %}</span>{% endblock %}
|
|
{% block content %}
|
|
<p>{% trans "Unfortunately, the link to this page does not work, the page (temporarily) does not exist or it has been moved." %}</p>
|
|
<style>
|
|
.rug-breadcrumbs {
|
|
display:none
|
|
}
|
|
|
|
.rug-layout__item.rug-width-m-8-24 {
|
|
display:none
|
|
}
|
|
</style>
|
|
{% endblock %} |