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

404.html « layouts - github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2cefc716063a0eac66c022d7248ba533d336b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ partial "head.html" . }}

<body class="loading {{ .Site.Params.Mode }}-mode">
    {{ partial "loader.html" .}}
    {{ partial "header.html" . }}
    <div class="middle">
        <nav class="sidebar">
            {{ partial "sidebar_posts.html" . }}
        </nav>
        <main class="main">
            <div class="intro">
                <img src="{{ "images/logo.svg" | absURL }}" alt="logo">
                <h2> 404 Page not found. </h2>
            </div>
        </main>
    </div>
    {{ partial "footer.html" . }}
    {{ partial "js.html" . }}
</body>

</html>