1
0
forked from finn/site
site/backend/app/templates/404.html

9 lines
139 B
HTML
Raw Normal View History

2024-08-03 13:31:19 +00:00
{% extends "base.html" %}
{% block content %}
2024-08-08 15:14:44 +00:00
<h2>File Not Found</h1>
2024-08-03 13:31:19 +00:00
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}