flash.moe/templates/errors/master.twig

12 lines
497 B
Twig
Raw Normal View History

2023-10-12 18:45:11 +00:00
{% extends 'master.twig' %}
{% block container %}
<div class="http-error">
<h2 class="http-error-head">{{ http_error_title|default('Unknown Error #' ~ http_error_code) }}</h2>
{% if http_error_image is defined %}
<img src="{{ http_error_image }}" alt="{{ http_error_image }}" class="http-error-image">
{% endif %}
<div class="http-error-desc">{{ http_error_desc|default('No additional information is available.') }}</div>
</div>
{% endblock %}