2020-11-22 16:29:05 -08:00
|
|
|
{% extends "base.html" %}
|
2021-01-14 09:53:54 -08:00
|
|
|
{% block title %}Error: {{ msg }}{% endblock %}
|
2020-11-22 16:29:05 -08:00
|
|
|
{% block sortstyle %}{% endblock %}
|
|
|
|
{% block content %}
|
2024-06-19 14:45:32 -04:00
|
|
|
<div id="error">
|
|
|
|
<h1>{{ msg }}</h1>
|
|
|
|
<h3><a href="https://www.redditstatus.com/">Reddit Status</a></h3>
|
|
|
|
<br />
|
2024-11-01 18:16:25 -04:00
|
|
|
<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>
|
|
|
|
|
2024-06-19 14:45:32 -04:00
|
|
|
<h3>Expected something to work? <a
|
|
|
|
href="https://github.com/redlib-org/redlib/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=%F0%9F%90%9B+Bug+Report%3A+{{ msg }}">Report
|
|
|
|
an issue</a></h3>
|
|
|
|
<br />
|
|
|
|
<h3>Head back <a href="/">home</a>?</h3>
|
|
|
|
</div>
|
2024-11-01 18:16:25 -04:00
|
|
|
{% endblock %}
|