mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Removing status code from 404 title Removing status code from 503 title Adding id to 503 error box Indatation fix
8 lines
299 B
HTML
8 lines
299 B
HTML
{% extends 'partials/layout.html' %}
|
|
|
|
{% block pageContent %}
|
|
<div id="error-page" class="box 503">
|
|
<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 %}
|