10 lines
439 B
HTML
10 lines
439 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>500 Internal Server Error</b></blockquote>
|
|
The server encountered an unexpected condition which prevented it from fulfilling the request. Return to the <a href="{{ url_for('index') }}">main page</a>.
|
|
{% endblock %}
|