Finish updating deps

This commit is contained in:
Jonathan Cremin 2016-06-02 21:06:52 +01:00
parent 44860b0dcf
commit 24e42343e4
6 changed files with 103 additions and 65 deletions

View file

@ -21,17 +21,17 @@
</div>
<div class='row vertical-center'>
<div class='col-md-12'>
<h2>{{ status }}</h2>
{% if status >= 500 %}
<h1>{{ error }}</h1>
<h2><%= status %></h2>
<% if (status >= 500) { %>
<h1><%= error %></h1>
<p>Refreshing might fix the problem. If not, sit tight! We're on it!</p>
{% elseif status === 404 %}
<% } else if (status === 404) { %>
<h1>Sorry, it looks like the file you asked for is gone.</h1>
<a href='/'>Take Me Home</a>
{% else %}
<h1>{{ error }}</h1>
<% } else { %>
<h1><%= error %></h1>
<a href='/'>Take Me Home</a>
{% endif %}
<% } %>
</p>
</div>
</div>