15 lines
457 B
HTML
15 lines
457 B
HTML
{% extends "base.html" %}
|
||
{% from "macros/title.html" import title_tag with context %}
|
||
|
||
{% block title %}{{ title_tag(T('Bad Request'), false) }}{% 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.</p>
|
||
<p>If you entered the URL manually please check your spelling and try again.</p>
|
||
</div>
|
||
</main>
|
||
{% endblock %}
|