forked from canonical/ubuntu.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path500.html
executable file
·34 lines (32 loc) · 1.09 KB
/
500.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "templates/one-column_no_nav.html" %}
{% block title %}500: Server error{% endblock %}
{% block content %}
<div class="p-strip is-deep">
<div class="row u-equal-height">
<div class="col-6 u-vertically-center u-align--center">
{{
image(
url="https://assets.ubuntu.com/v1/bcdcf2c8-image-404.svg",
alt="",
height="365",
width="360",
hi_def=True,
loading="auto"
) | safe
}}
</div>
<div class="col-6 u-vertically-center">
<div>
<h1>500: Server error</h1>
<p class="p-heading--4">Something's gone wrong.</p>
{% if message %}<blockquote><code>{{ message }}</code></blockquote>{% endif %}
<p>
Try reloading the page.
If the error persists, please note that it may be a <a href="https://github.com/canonical-websites/www.ubuntu.com/issues">known issue</a>.
If not, please <a href="https://github.com/canonical-websites/www.ubuntu.com/issues/new">file a new issue</a>.
</p>
</div>
</div>
</div>
</div>
{% endblock content %}