engelsystem/resources/views/errors/404.twig

19 lines
544 B
Twig
Raw Normal View History

2018-11-13 17:47:19 +01:00
{% extends "errors/default.twig" %}
{% block title %}{{ __("Page not found") }}{% endblock %}
{% 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) }}
<small class="text-muted">{{ __("No sleep 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 %}