forked from canonical/ubuntu.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.html
executable file
·34 lines (32 loc) · 827 Bytes
/
403.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.html" %}
{% block title %}404: Page not found{% 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>403: Forbidden</h1>
<p class="p-heading--4">
{% if message %}
{{ message }}
{% else %}
You're not allowed to access this page
{% endif %}
</p>
</div>
</div>
</div>
</div>
{% endblock content %}