Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/35ee6fb6f61dd79b8289b70bef6054708e499b4d/views/404.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/views/404.html

21 lines
439 B

{% 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 %}