Welcome to mirror list, hosted at ThFree Co, Russian Federation.

404.html « layouts - github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6201d1ebba5fe064447e823f0558250902ea1b7 (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
31
32
33
34
35
{{ partial "core/html-start.html" . }}

{{ partial "core/head.html" . }}

<body class="page-colors minimum-viewport-height">
    {{ partial "core/main-menu.html" . }}

    <div class="main-content">
        <div class="center-space">
            <div class="article-colors">
                <article>
                    <header>
                        <h1 class="blue-grey white-text center-items">404</h1>
                    </header>

                    <section class="center-items">
                        <p style="font-size: 1.5em;">
                            The requested page was not found! Try searching the site for
                            another page!
                        </p>
                    </section>

                    <section class="center-items large-form">
                        {{ partial "core/search.html" . }}
                    </section>
                </article>
            </div>
        </div>
    </div>

    {{ partial "core/js.html" . }}
</body>

{{ partial "core/html-end.html" . }}