12 lines
348 B
Twig
12 lines
348 B
Twig
{% extends 'master.twig' %}
|
|
|
|
{% set title = '#%03d %s'|format(http_code, http_text) %}
|
|
|
|
{% block content %}
|
|
<div class="http-error">
|
|
<div class="http-error-icon"><img src="//static.flash.moe/images/silk/error.png" alt="Error"></div>
|
|
<div class="http-error-text">
|
|
{{ title }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|