aurweb/templates/errors/503.html
Steven Guikal e126d431d7
fix(FastAPI): add custom error templates for certain exceptions
Signed-off-by: Steven Guikal <void@fluix.one>
2022-01-03 18:22:03 -08:00

8 lines
307 B
HTML

{% extends 'partials/layout.html' %}
{% block pageContent %}
<div id="error-page" class="box">
<h2>503 - {% trans %}Service Unavailable{% endtrans %}</h2>
<p>{% trans %}Don't panic! This site is down due to maintenance. We will be back soon.{% endtrans %}</p>
</div>
{% endblock %}