Files
microblog/app/templates/404.html
2023-06-03 18:07:36 +02:00

9 lines
147 B
HTML

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