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

404.html « layouts - github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bba9ef9b9484bd83edbcf99ede5faa31993d9d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}

<div class="single__content notfound">
    <h1>
        {{ if $.Site.Params.notfound }}
        {{ if $.Site.Params.notfound.message }}
        {{ $.Site.Params.notfound.message }}
        {{ else }}
        404
        {{end }}
        {{ else }}
        404
        {{ end}}
    </h1>
</div>

{{ end }}