-
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
-
28
<!--
Copyright 2025 Shota FUJI <pockawoooh@gmail.com>
SPDX-License-Identifier: MIT
-->
{{ define "404" -}}
<!DOCTYPE html>
<html lang="en">
<head>
{{ template "head" }}
<title>{{ .Config.Meta.Title }}</title>
{{- if .Config.Meta.Description }}
<meta name="description" content="{{ .Config.Meta.Description }}" />
{{- end }}
</head>
<body>
<header>
<ol>
<li>
<a href="/">Top</a>
</li>
</ol>
</header>
<main>
<h1>Page not found</h1>
</main>
</body>
</html>
{{- end }}