9 lines
302 B
HTML
9 lines
302 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Error 404{% endblock %}
|
|
|
|
{% block content_title %}File not Found{% endblock %}
|
|
{% block content_description %}Something unexpected happened!{% endblock %}
|
|
{% block content %}
|
|
<p><a href="{{ url_for('basic_bp.index') }}">Return home</a></p>
|
|
{% endblock %} |