-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patherror.html.twig
37 lines (28 loc) · 1.08 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
37
{% extends 'base.html.twig' %}
{% block icon %}⛔️{% endblock %}
{% block title %}Error {{ status_code }}{% endblock %}
{% block body %}
<article>
<header>
<h5>Oops! An Error {{ status_code }} occured!</h5>
</header>
<p>Sorry, but an error <b>{{ status_text }}</b> ({{ status_code }}) occured.
<br/>
» About this error code: <a 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>
<br/>
» <a href="/">Homepage</a><br/>
</p>
<hr/>
<div class="grid">
<div></div>
<div>
<img src="https://frankenphp.dev/img/elephant_footer.svg" width="250" alt="The FrankenPHP elePHPant" / >
</div>
<div></div>
</div>
<footer>
Logo by <a data-tooltip="https://frankenphp.dev" href="https://frankenphp.dev">FrankenPHP</a>
</footer>
</article>
{% endblock %}