blob: 8bcffdd60a110f12aead411cf7267040fb2de556 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | {{ define "main" }}
<div id="404">
  <h1>(404) The page you requested was not found.</h1>
  {{ if .Site.Params.header404 }}
    <img id="header-img" src="{{ index .Site.Params.header404 0 }}" alt="{{ index .Site.Params.header404 1 }}">
  {{ end }}
  <p>
    <a href="/">Go back home</a>
  </p>
</div>
{{ end }}
 |