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

404.html « layouts - github.com/spech66/bootstrap-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d739750d93aedbfc779b300ad40c56f7dfcc64e (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
<!DOCTYPE html>
<html lang="{{.Site.Language.Lang }}">
    <meta charset="utf-8">
    <title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
    {{- partial "head.html" . -}}
    <body>
        {{- partial "header.html" . -}}
        <main role="main">
            <div class="container mt-3 mb-3">
                <div class="mb-3">
                    <div class="card">
                        <div class="card-body">
                            <h1 class="card-title"><a href="{{ "/" | relLangURL }}"></a>{{ .Title | markdownify }}</a></h1>
                            <p class="card-text">{{ i18n "error404" }}</p>
                            <a href="{{ "/" | relLangURL }}" class="card-link">{{ i18n "gotohome" }}</a>
                        </div>
                    </div>
                </div>
            </div>
        </main>
        {{- partial "footer.html" . -}}
        {{- partial "js.html" . -}}
    </body>
</html>