f6a53f7cc5
Fixes #741
25 lines
743 B
HTML
25 lines
743 B
HTML
{% extends "error.html" %}
|
|
|
|
{% block title %}
|
|
<title>Quay - Something went wrong!</title>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>Something went wrong on our end!</h3>
|
|
<h4>
|
|
We're currently working to fix the problem, but if its persists please feel free to <a href="/contact">contact us</a>. In the meantime, try a refreshing drink (or just refreshing).
|
|
</h4>
|
|
|
|
<div style="margin-top: 20px">
|
|
Current Service Status:
|
|
<span id="status-elem">(Loading)</span>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="//statuspage-production.s3.amazonaws.com/se.js"></script>
|
|
<script type="text/javascript">
|
|
window.fetchStatusPage({
|
|
pageId: '8szqd6w4s277',
|
|
renderTo: '#status-elem'
|
|
});
|
|
</script>
|
|
{% endblock %}
|