-
Notifications
You must be signed in to change notification settings - Fork 8
/
error.html.twig
36 lines (31 loc) · 1.19 KB
/
error.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% extends 'base.html.twig' %}
{% block icon %}⛔️{% endblock %}
{% block title %}Error {{ status_code }}{% endblock %}
{% block body %}
<section>
<card>
<h5>Oops! An Error {{ status_code }} occured!</h5>
<hr>
<p>Sorry, but an error <b>{{ status_text }}</b> ({{ status_code }}) occured.
<br/>
» About this error code: <a att="" href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/{{ status_code }}">
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/{{ status_code }}</a>
</p>
<hr>
<p txt="c">
<a att="" href="/">Homepage</a>
</p>
<hr/>
<grid>
<div col="1/3"></div>
<div col="1/3">
<img src="https://frankenphp.dev/img/elephant_footer.svg" width="250" alt="The FrankenPHP elePHPant" />
<p txt="c">
Logo by <a att="" href="https://frankenphp.dev">FrankenPHP</a>
</p>
</div>
<div col="1/3"></div>
</grid>
</card>
</section>
{% endblock %}