23 lines
825 B
Twig
23 lines
825 B
Twig
{% block head %}
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('not-found') }}
|
|
{% endblock %}
|
|
</head>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="bsod container mx-auto pt-24 max-w-xl">
|
|
<h1 class="neg text-center text-6xl text-blue-800 mb-12">
|
|
<span class="bg-gray-400 py-1 px-4">Error - {{ status_code }}</span>
|
|
</h1>
|
|
<p class="text-lg text-gray-200 mb-4">An error has occured, to continue:</p>
|
|
<p class="text-lg text-gray-200 mb-8">
|
|
* Return to our homepage.
|
|
</p>
|
|
<nav class="nav text-center mt-9">
|
|
<a href="{{ path('home') }}" class="link text-gray-200 hover:bg-gray-400 hover:text-blue-800 py-1 px-2">index</a>
|
|
</nav>
|
|
</div>
|
|
{% endblock %} |