diff options
| author | mo8it <mo8it@proton.me> | 2025-05-16 23:11:08 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-05-16 23:11:08 +0200 |
| commit | 7ec698696537aac4433bb0e60fb10310a6b34bc1 (patch) | |
| tree | 310e862b2502241d20a70433d125c80d5721722e /website/templates/404.html | |
| parent | 74ab9924b4193c0fb66f3c0e3667a4d7b4edfb18 (diff) | |
Add templates
Diffstat (limited to 'website/templates/404.html')
| -rw-r--r-- | website/templates/404.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/website/templates/404.html b/website/templates/404.html new file mode 100644 index 0000000..ecee207 --- /dev/null +++ b/website/templates/404.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% import "macros.html" as macros %} + +{% block content %} + <div class="flex flex-col mx-auto text-center"> + <h1>DON'T PANIC!</h1> + <h2>404: Page not found!</h2> + + <img class="max-h-[50vh]" + src="{{ get_url(path='images/panic.svg') | safe }}" + alt=""> + + {{ macros::btn(link=get_url(path="/") , content="Back to the homepage") }} + </div> +{% endblock %} |
