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

404.html « layouts - github.com/asurbernardo/amperage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 626e2c858c64e8f8cf094deca70b528e7f64b542 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="robots" content="noindex" />
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <title>{{ i18n "notFound"}}</title>
        <style type="text/css">
            html, body {
                height: 100%;
            }
            body {
                font-family: Courier New, sans-serif;
                margin: 0;
            }
            h1 {
                font-weight: bold;
                font-size: 5em;
            }
            .flex-container {
                height: 100%;
                padding: 0;
                margin: 0;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }
            .flex-item {
                text-align: center;
            }
            @media only screen and (max-width: 768px) {
                h1 {
                    font-size: 3.5em;
                }
            }
        </style>
    </head>
    <body>
        <main class="flex-container">
            <h1 class="flex-item">{{ i18n "notFound"}}</h1>
            <h1 class="flex-item"> 🏜️ </h1>
            <p class="flex-item"><a href="{{ .Site.BaseURL }}">{{ i18n "goBackHome" }}</a></p>
        </main>
    </body>
</html>