aboutsummaryrefslogtreecommitdiff
path: root/layouts/404.html
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2018-11-25 13:34:00 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2018-11-25 13:34:00 +0100
commit601bfabde12b406f56111736ee7ecd9447b893f8 (patch)
tree23c45b77792177f892b22b53b49c619f79d36570 /layouts/404.html
parent76c251066fd34a26734bf1acdb1e041881e1c0af (diff)
Update 404 template
Diffstat (limited to 'layouts/404.html')
-rw-r--r--layouts/404.html25
1 files changed, 17 insertions, 8 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 06ca617..f0b35fb 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,10 +1,19 @@
+<!DOCTYPE html>
+{{- partial "docs/shared" -}}
+<html>
-{{ define "main"}}
-<main id="main">
- <div>
- <h1 id="title"><a href="{{ "/" }}">Go Home</a></h1>
- </div>
-</main>
-{{ end }}
+<head>
+ {{ partial "docs/html-head" . }}
+ {{ partial "docs/inject/head" . }}
+</head>
-{{ define "toc" }} {{ end }} \ No newline at end of file
+<body>
+ <main class="flex justify-center">
+ <h1>404 Not Found</h1>
+ </main>
+
+ {{ partial "docs/inject/body" . }}
+ {{ template "_internal/google_analytics_async.html" . }}
+</body>
+
+</html>