engelsystem/resources/views/errors/404.twig

19 lines
548 B
Twig

{% extends "errors/default.twig" %}
{% block title %}{{ __('page.404.title') }}{% endblock %}
{% block content_container %}
<div class="row">
<div class="col-md-6 offset-md-3 col-lg-4 offset-lg-4 error-big">
<h2>
4<span class="pulse">:</span>{{ status|slice(1, 2) }}
<small class="text-muted">{{ __('page.404.not_found') }}</small>
</h2>
{% block content_text %}
{{ __(content) }}
{% endblock %}
</div>
</div>
{% endblock %}