25 lines
994 B
HTML
25 lines
994 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Error: {{ msg }}{% endblock %}
|
|
{% block sortstyle %}{% endblock %}
|
|
{% block content %}
|
|
<div id="error">
|
|
<h1>{{ msg }}</h1>
|
|
<h3><a href="https://www.redditstatus.com/">Reddit Status</a></h3>
|
|
<br />
|
|
<h3 id="update-status"></h3>
|
|
<br />
|
|
<h3 id="update-status"></h3>
|
|
<br>
|
|
<div id="git_commit" data-value="{{ crate::instance_info::INSTANCE_INFO.git_commit }}"></div>
|
|
<script src="/check_update.js"></script>
|
|
|
|
<h3>Expected something to work? Try a random <a id="random-instance">upstream instance.</a></h3>
|
|
<br />
|
|
<h3 id="issue_warning" >!! Do <b>NOT</b> open an issue on the <a href="https://github.com/redlib-org/redlib/">redlib repository</a> with a redsunlib specific issue !!</h3>
|
|
<br />
|
|
<p id="error-318">If you're getting a "Failed to parse page JSON data" error, please check <a href="https://github.com/redlib-org/redlib/issues/318" target="_blank">#318</a></p>
|
|
<br />
|
|
<h3>Head back <a href="/">home</a>?</h3>
|
|
</div>
|
|
{% endblock %}
|