You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
439 B
21 lines
439 B
5 years ago
|
{% 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 %}
|