blob: e680954d0036bc4a6d0aa51580434f9d163e2afc (
plain)
1
2
3
4
5
6
7
8
9
10
  | 
{{ define "main" }}
  <div class="post">
    <h1 class="post-title">404 — {{ $.Site.Params.missingContentMessage | default "Page not found..." }}</h1>
    <div class="post-content">
      <a href="{{ "/" | absURL }}">{{ $.Site.Params.missingBackButtonLabel | default "Back to home page" }} →</a>
    </div>
  </div>
{{ end }}
 
  |