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) }}
|
2021-04-17 14:49:53 +02:00
|
|
|
<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 %}
|