summaryrefslogtreecommitdiff
path: root/website/templates/404.html
blob: eb9d4691a727d391fadd04f6ac1685e04ef9f1a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block content %}
    <div class="flex flex-col mx-auto text-center">
        <h1>DON'T PANIC!</h1>
        <h2>404: Page not found!</h2>

        <img class="mx-auto max-h-[50vh]"
             src="{{ get_url(path='images/panic.svg') | safe }}"
             alt="">

        <a class="text-2xl font-bold" href="{{ get_url(path='@/_index.md') }}">Back to homepage</a>
    </div>
{% endblock %}