summaryrefslogtreecommitdiff
path: root/layouts/404.html
blob: 8e46d6d8db2e929a8b00adbc167233b722b6e2cc (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- define "main" }}
<div class="page-not-found">
    <h1>{{ lang.Translate "404_title" | default "Page not found" }}</h1>
    <p>{{ lang.Translate "404_description" | default "The requested page does not exist" }}</p>
    <p>
        <a href="{{ site.Home.RelPermalink }}">
            {{ lang.Translate "404_homepage" | default "Back to the homepage" }}
        </a>
    </p>
</div>
{{- end }}