diff options
| author | mo8it <mo8it@proton.me> | 2025-05-17 19:53:30 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-05-17 19:53:30 +0200 |
| commit | 2f700991f32de65ad8a6972edfa688731fa528f4 (patch) | |
| tree | 3026b3539c192b34bafbeade2f164f714da9fc73 /website/templates/404.html | |
| parent | b4a6b87e2402c8b1e56227957ed9b61406d2ce24 (diff) | |
Remove macros
Diffstat (limited to 'website/templates/404.html')
| -rw-r--r-- | website/templates/404.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/website/templates/404.html b/website/templates/404.html index ecee207..9bbd441 100644 --- a/website/templates/404.html +++ b/website/templates/404.html @@ -1,16 +1,14 @@ {% 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]" + <img class="max-h-[50vh] mx-auto" src="{{ get_url(path='images/panic.svg') | safe }}" alt=""> - {{ macros::btn(link=get_url(path="/") , content="Back to the homepage") }} + <a class="text-2xl font-bold" href="{{ get_url(path='/') }}">Back to homepage</a> </div> {% endblock %} |
