PythonGallery/templates/error.html
2022-12-01 18:48:31 +00:00

10 lines
No EOL
260 B
HTML

{% extends 'layout.html' %}
{% block content %}
<header>
<img src="{{ url_for('static', filename='images/leaves.jpg') }}" alt="leaves"/>
</header>
<div class="app">
<h1>{{error}}</h1>
<p>{{msg}}</p>
</div>
{% endblock %}