crow setup
This commit is contained in:
29
templates/errors/400.jinja
Normal file
29
templates/errors/400.jinja
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "bases/base.html" %}
|
||||
|
||||
{% block title %}400 - Internal Server Error{% endblock %}
|
||||
{% block description %}Bad request. The server could not understand the request due to invalid syntax.{% endblock %}
|
||||
|
||||
{% block head %}
|
||||
<link rel="stylesheet" href="/static/css/400.css">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section>
|
||||
<h1>400 - Bad Request</h1>
|
||||
<p>
|
||||
What did you do? The server could not understand the request due to invalid syntax. Please check your request and try again.
|
||||
</p>
|
||||
<h2>The fuckup in question</h2>
|
||||
<p>
|
||||
{% if error %}
|
||||
{{ error }}
|
||||
{% else %}
|
||||
No specific error message provided.
|
||||
{% endif %}
|
||||
</p>
|
||||
<h2>What to do now</h2>
|
||||
<p>
|
||||
idk :P
|
||||
</p>
|
||||
</section>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user