aboutsummaryrefslogtreecommitdiff
path: root/public/error/404.html
blob: 1706e10f70b569b9c8e6856a456b925b9266e024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php $title = '404 - ' ?>

<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/views/partials/header.error.php'; ?>

<section class="section hero" itemscope itemtype="http://schema.org/HomePage">

    <div class="hero-body">
        <div class="container">
            <div class="columns">
                <div class="column is-8 is-offset-2 has-text-centered">

                    <h1 class="error__headerSize">404</h1>

                    <br>

                    <h2>Error 404 - Page not found.</h2>
                    <p>Check the URL and try again.<p>

                    <br>

                    <p>You can head back to the <a href="/">homepage</a>.</p>

                </div>
            </div>
        </div>
    </div>

</section>

<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/views/partials/footer.php'; ?>