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

404.html « layouts - github.com/spech66/materialize-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36491923261a180bc303ef29ff8371adcc833283 (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
<!DOCTYPE html>
<html lang="{{.Site.Language.Lang }}">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    {{- partial "seo_schema" . -}}
    <title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
    {{- partial "head.html" . -}}
    <body>
        {{- partial "header.html" . -}}
        <div class="container">            
            <div class="row">
                <div class="col s12 m12">
                    <div class="card">
                        <div class="card-content">
                            <h1 class="card-title"><a href="{{ "/" | relLangURL }}">{{ .Title | markdownify }}</a></h1>                                                
                            <p class="card-text">{{ i18n "error404" }}</p>
                            <p><br />
                                <a href="{{ "/" | relLangURL }}" class="blue waves-effect waves-light btn"><i class="material-icons right">navigate_next</i>{{ i18n "gotohome" }}</a>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        {{- partial "footer.html" . -}}
        {{- partial "js.html" . -}}
    </body>
</html>