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: d1612979b9cf269c9a88f9203c8044abe28eadcd (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
{{ partial "header.html" . }}
<body>
<!-- Parent section -->
<div class="section" id="top">
    <!-- Begin Title -->
    <div class="container hero is-medium has-text-centered {{ if .Site.Params.fadeIn }} fade-in one {{ end }}">
        <h1 class="bold-title is-1">404</h1>
    </div>
    <!-- End Title -->
    <!-- Everything below fades in two! -->
    <div class="section {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
        {{ partial "nav.html" . }}
        <!-- Begin blurb -->
        <div class="container {{ if .Site.Params.fadeIn }} fade-in two {{ end }} top-pad">
            Oops! Either you've found a bug (in which case, <a href="mailto:{{ .Site.Params.email }}">please tell me</a>) or you're just making things up. This page doesn't exist!
        </div>
        <!-- End blurb -->
        <div class="container top-pad">
            <hr>
        </div>
    </div>
    {{ partial "footer.html" . }}
</div>
<!-- End parent section -->