13 lines
375 B
Django/Jinja
13 lines
375 B
Django/Jinja
{% extends "base.jinja2" %}
|
||
|
||
{% block title %}Bad Request - {{ app_name }}{% endblock %}
|
||
|
||
{% block content %}
|
||
<main class="error-page">
|
||
<h1 id="firstHeading">Bad request</h1>
|
||
|
||
<div class="inner-content">
|
||
<p>You sent a request the server can’t understand. If you entered the URL manually please check your spelling and try again.</p>
|
||
</div>
|
||
</main>
|
||
{% endblock %}
|