1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-23 16:23:41 +00:00
bazarr/views/404.html
Louis Vézina de02f5ea10 WIP
2020-04-30 08:38:05 -04:00

21 lines
No EOL
439 B
HTML

{% extends '_main.html' %}
{% block title %}MIA - Bazarr{% endblock %}
{% block head %}
<style>
.content {
text-align: center;
}
</style>
{% endblock head %}
{% block body %}
<div class="content">
<br>
<br>
<h1>You must be lost, nothing to see here.</h1>
<br>
<img src="{{ url_for('static',filename='404.png') }}" height="350 px">
</div>
{% endblock %}