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

404.html « layouts - github.com/jsnjack/kraiklyn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52bc91a4409723675c92cc835c96db07e102f481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ partial "head.html" . }}
<style>
    .not-found {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 100vh;
        font-size: 200%;
        text-decoration: none;
        color: #363636;
    }

    .not-found a {
        display: inline-block;
    }
</style>
<a href="{{ .Site.BaseURL }}" class="not-found">
    Well, a fine little mess. Easy in, easy out. Another triumph.
</a>
{{ partial "tail.html" . }}