engelsystem/resources/views/errors/404.twig

19 lines
548 B
Twig
Raw Normal View History

2018-11-13 17:47:19 +01:00
{% extends "errors/default.twig" %}
2023-11-24 16:20:12 +01:00
{% block title %}{{ __('page.404.title') }}{% endblock %}
2018-11-13 17:47:19 +01:00
{% block content_container %}
<div class="row">
2021-08-05 01:00:12 +02:00
<div class="col-md-6 offset-md-3 col-lg-4 offset-lg-4 error-big">
2018-11-13 17:47:19 +01:00
<h2>
4<span class="pulse">:</span>{{ status|slice(1, 2) }}
2023-11-24 16:20:12 +01:00
<small class="text-muted">{{ __('page.404.not_found') }}</small>
2018-11-13 17:47:19 +01:00
</h2>
{% block content_text %}
2020-11-15 18:47:30 +01:00
{{ __(content) }}
2018-11-13 17:47:19 +01:00
{% endblock %}
</div>
</div>
{% endblock %}