29 lines
944 B
HTML
29 lines
944 B
HTML
{% extends "layouts/base-error.html" %}
|
|
|
|
{% block title %} Error 500 {% endblock title %}
|
|
|
|
<!-- Specific CSS goes HERE -->
|
|
{% block stylesheets %}{% endblock stylesheets %}
|
|
|
|
{% block content %}
|
|
|
|
<div class='pos-a t-0 l-0 bgc-white w-100 h-100 d-f fxd-r fxw-w ai-c jc-c pos-r p-30'>
|
|
<div class='mR-60'>
|
|
<img alt='#' src='{{ ASSETS_ROOT }}/images/500.png' />
|
|
</div>
|
|
|
|
<div class='d-f jc-c fxd-c'>
|
|
<h1 class='mB-30 fw-900 lh-1 c-red-500' style="font-size: 60px;">500</h1>
|
|
<h3 class='mB-10 fsz-lg c-grey-900 tt-c'>Internal server error</h3>
|
|
<p class='mB-30 fsz-def c-grey-700'>Something goes wrong with our servers, please try again later.</p>
|
|
<div>
|
|
<a href="index.html" type='primary' class='btn btn-primary'>Go to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|
|
<!-- Specific Page JS goes HERE -->
|
|
{% block javascripts %}{% endblock javascripts %}
|