Files
microblog/app/templates/404.html
2023-06-04 11:24:53 +02:00

7 lines
147 B
HTML

{% extends "base.html" %}
{% block app_content %}
<h1>File Not Found</h1>
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}