File: 404.twig

package info (click to toggle)
php-di 7.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,940 kB
  • sloc: php: 10,572; makefile: 42; xml: 17; sh: 10; pascal: 5
file content (36 lines) | stat: -rw-r--r-- 1,091 bytes parent folder | download | duplicates (2)
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
31
32
33
34
35
36
{% extends "default.twig" %}

{% block content %}

    <section class='section-wrapper not-found-w'>
        <div class='container'>
            <div class="row">
                <div class="col-md-6 col-md-offset-3">

                    <h1>
                        <i class="fa fa-exclamation-triangle"></i>
                        Page not found
                    </h1>

                    <p>
                        Sorry the page you requested may have been moved or deleted :(
                    </p>

                    <p>
                        <a href="{{ baseUrl }}/" class="btn btn-default btn-lg">
                            <i class='fa fa-home'></i>
                            Go to the homepage
                        </a>
                        <a href="{{ baseUrl }}/doc" class="btn btn-default btn-lg">
                            <i class='fa fa-book'></i>
                            Go to the documentation index
                        </a>
                    </p>

                </div>
            </div>

        </div>
    </section>

{% endblock %}