2018-08-15 01:12:58 +00:00
|
|
|
{% extends 'master.twig' %}
|
2018-03-28 00:35:37 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2018-04-16 00:33:54 +00:00
|
|
|
<div class="container">
|
2018-08-06 22:19:35 +00:00
|
|
|
<div class="container__title">
|
|
|
|
{{ title|default(error_code|default(http_code) >= 400 ? 'Error' : 'Information') }} {{ error_code|default(http_code >= 400 ? http_code : '') }}{{ error_text is defined ? ' - ' ~ error_text : '' }}
|
|
|
|
</div>
|
|
|
|
|
2018-04-16 00:33:54 +00:00
|
|
|
<div class="container__content">
|
2018-08-06 22:19:35 +00:00
|
|
|
{% if message is defined %}
|
|
|
|
<p>{{ message }}</p>
|
|
|
|
{% else %}
|
|
|
|
{% block error_message %}
|
|
|
|
<p>Try again later, perhaps.</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% endif %}
|
2018-03-28 00:35:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-08-08 01:53:33 +00:00
|
|
|
{% if error_code|default(0) >= 500 %}
|
|
|
|
<audio autoplay>
|
|
|
|
<source src="https://static.flash.moe/sounds/wbrb.ogg" type="audio/ogg">
|
|
|
|
<source src="https://static.flash.moe/sounds/wbrb.mp3" type="audio/mp3">
|
|
|
|
</audio>
|
|
|
|
{% endif %}
|
2018-03-28 00:35:37 +00:00
|
|
|
{% endblock %}
|
|
|
|
|