Additional Clean Up, Favicons, etc.

This commit is contained in:
2026-04-15 22:03:19 -05:00
parent 105d897c64
commit 4e1fb5e5ec
17 changed files with 887 additions and 9 deletions

16
templates/error.html Normal file
View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block head %}
<link rel="stylesheet" href="{{ url_for('static', filename='dialog.css') }}">
{% endblock %}
{% block content %}
<main>
<div>
<h2>{{ error.code }} {{ error.name }}</h2>
<h3>An error has occurred!</h3>
<p>{{ error.description }}</p>
<p><a href="/ade">Return to Front Page</a></p>
</div>
</main>
{% endblock %}