summaryrefslogtreecommitdiff
path: root/website/templates/404.html
blob: 234eb46f419a5185f9c83ef342ffa179065e0685 (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="max-h-[50vh] mx-auto"
             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 %}