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

404.html « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5f3b19abb63e470851cb1a2042c1c039a103156 (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
 {{ partial "header.html" . }}

<div class="container-fluid">
    <div class="main">
        <div class="page-head-box fade-in one">
        <h1 class="list-title">404</h1>
        
            <div class="blognav">
            <hr>
            <a href="/">Main</a> | 
            <a href="/#about">About</a> | 
            {{ if .Site.Params.showprojects }}
            <a href="/#projects">Projects</a> | 
            {{ end }}
            {{ if .Site.Params.showallposts }}
            <a href="/#blog">Back to blog</a> |
            {{ else }}
            <a href="/blog">Back to blog</a> |
            {{ end }}
            <a href="/#contact">Contact</a> 
            <hr>
            </div>
        </div>

    <div class="content fade-in two">

    <div class="container markdown">
        Oops! Either you've found a bug (in which case, <a href="{{ .Site.Params.email }}">please tell me</a>) or you're just making things up. This page doesn't exist!
    </div>
            
            <div class="blognav">
            <hr>
            </div>
{{ partial "footer.html" . }}
</div>
</div>
</div>