10 lines
463 B
HTML
10 lines
463 B
HTML
{% 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 %}
|