summaryrefslogtreecommitdiff
path: root/resources/views/errors/404.twig
blob: 6eb9104e414ddfea2a6841557bcfcced5d08ae21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "errors/default.twig" %}

{% block title %}{{ __("Page not found") }}{% endblock %}

{% block content_container %}
    <div class="row">
        <div class="col-sm-6 col-sm-offset-3 error-big">
            <h2>
                4<span class="pulse">:</span>{{ status|slice(1, 2) }}
                <small>{{ __("No sleep found") }}</small>
            </h2>

            {% block content_text %}
                {{ content }}
            {% endblock %}
        </div>
    </div>
{% endblock %}