microblog/app/templates/404.html

7 lines
142 B
HTML
Raw Normal View History

2017-09-15 07:03:20 +00:00
{% extends "base.html" %}
2017-09-27 06:43:28 +00:00
{% block app_content %}
2017-09-15 07:03:20 +00:00
<h1>Not Found</h1>
<p><a href="{{ url_for('index') }}">Back</a></p>
{% endblock %}