YGGtracker/templates/bundles/TwigBundle/Exception/error404.html.twig

14 lines
515 B
Twig
Raw Normal View History

2023-10-15 20:02:28 +00:00
{% extends theme ~ '/layout.html.twig' %}
{% block title %}{{ 'Not found' | trans }} - {{ name }}{% endblock %}
{% block main_content %}
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night">
<div class="text-center">
<h1 class="display-block margin-b-16-px">
404
</h1>
<div class="text-color-night margin-y-16-px">
2023-10-15 20:07:53 +00:00
{{ 'Page not found!' | trans }}
2023-10-15 20:02:28 +00:00
</div>
</div>
<div>
{% endblock %}