forked from alexphelps/server-error-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path503-error.html
29 lines (29 loc) · 1.32 KB
/
503-error.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
---
layout: error_page
title: 503 Service Unavailable
---
<div class="container">
<!-- Jumbotron -->
<div class="jumbotron">
<h1><i class="fa fa-exclamation-triangle orange"></i> {{page.title}}</h1>
<p class="lead">The web server is returning an unexpected temporary error for <em><span id="display-domain"></span></em>.</p>
<a href="javascript:document.location.reload(true);" class="btn btn-default btn-lg text-center"><span class="green">Try This Page Again</span></a>
</div>
</div>
<div class="container">
<div class="body-content">
<div class="row">
<div class="col-md-6">
<h2>What happened?</h2>
<p class="lead">A 503 error status implies that this is a temporary condition due to a temporary overloading or maintenance of the server. This error is normally a brief temporary interruption.</p>
</div>
<div class="col-md-6">
<h2>What can I do?</h2>
<p class="lead">If you're a site visitor</p>
<p>If you need immediate assistance, please send us an email instead. We apologize for any inconvenience.</p>
<p class="lead">If you're the site owner</p>
<p>This error is mostly likely very brief, the best thing to do is to check back in a few minutes and everything will probably be working normal again.</p>
</div>
</div>
</div>
</div>