website/templates/status_code/404.html

10 lines
463 B
HTML
Raw Normal View History

2021-06-01 23:15:46 +02:00
{% extends "template.html" %}
{% block title %}Stefan's Blog{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<blockquote cite="https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" ><b>404 Not Found</b></blockquote>
Not Found: The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again, or return to <a href="{{ url_for('index') }}">main page</a>.
{% endblock %}