initial commit
This commit is contained in:
commit
a528892ac8
46 changed files with 2152 additions and 0 deletions
10
templates/error/404.html
Normal file
10
templates/error/404.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% set title = "404 - Not found" %}
|
||||
|
||||
{% block body %}
|
||||
<main>
|
||||
<h2>404 — Not found</h2>
|
||||
<p>The page you were looking for was not found :(</p>
|
||||
</main>
|
||||
{% endblock %}
|
11
templates/error/500.html
Normal file
11
templates/error/500.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% set title = "500 - Internal Server Error" %}
|
||||
|
||||
{% block body %}
|
||||
<main>
|
||||
<h2>500 — Internal Server Error</h2>
|
||||
<p>It seems like something broke on the server end. Sorry! :S</p>
|
||||
<p>Try again or try something else.</p>
|
||||
</main>
|
||||
{% endblock %}
|
Reference in a new issue