python-gallery/gallery/templates/error.html
Michał 7605e5ab40 Add Notification js system
Load full image on first click of full resolution button
Change background image
Change way images load into the view
Add Lazy Loading
2023-01-14 01:46:11 +00:00

12 lines
314 B
HTML

{% extends 'layout.html' %}
{% block header %}
<img src="{{ url_for('static', filename='images/background.svg') }}" onload="imgFade(this)" style="display: none;"/>
{% endblock %}
{% block content %}
<div class="app err-warning">
<h1>{{error}}</h1>
<p>{{msg}}</p>
</div>
{% endblock %}