12 lines
296 B
HTML
12 lines
296 B
HTML
{{ define "title"}}
|
|
404 | {{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ if eq hugo.Environment "production" }}
|
|
<script>plausible("404",{ props: { path: document.location.pathname } });</script>
|
|
{{ end }}
|
|
|
|
{{ define "main"}}
|
|
<h1>NOT FOUND</h1>
|
|
<p>You just hit a route that doesn't exist...</p>
|
|
{{ end }} |