Files
flask_url_shortener/tiny0/templates/error.html
T

8 lines
144 B
HTML
Raw Normal View History

2020-07-20 17:51:52 +00:00
{% extends "layout.html" %}
{% block body %}
2020-08-24 15:25:42 +03:00
<div class="error">
<h1>{{ error_code }}</h1>
<h2>{{ error_message }}</h2>
</div>
2020-07-20 17:51:52 +00:00
{% endblock %}