-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path500.html
More file actions
21 lines (19 loc) · 624 Bytes
/
500.html
File metadata and controls
21 lines (19 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% block title %}
Something Went Wrong
{% endblock %}
{% block content %}
<section class="hero is-medium is-dark">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-1 pb-2">
Oops! Something went wrong.
</h1>
<p class="subtitle is-4">
We're experiencing some technical issues at the moment. Please try again later.
</p>
<a href="{% url 'purl-list' %}" class="button is-info">Explore available packages</a>
</div>
</div>
</section>
{% endblock %}