mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-07 13:50:25 -06:00
12 lines
230 B
HTML
12 lines
230 B
HTML
{% extends "bare_base.html" %}
|
|
|
|
{% block title %}404 Not Found{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="m-4">
|
|
<h1 class="text-4xl mt-4 font-bold">Not Found</h1>
|
|
|
|
<div class="pt-2">{{ exception }}</div>
|
|
</div>
|
|
{% endblock %}
|