summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>2015-07-13 23:42:56 +0200
committerdigitalcraftsman <digitalcraftsman@users.noreply.github.com>2015-07-13 23:42:56 +0200
commit2d0f48c7f8ed5c1ef5ee0e8a4c52b309a1a5e648 (patch)
tree55c360f4ec0a6760b28d18ccee7fb4aeb5e14fcf
parentd84c5080b69a2ef40ad73ca2dc15e7afa7716c97 (diff)
parent11adcd3d1496c75d8eff40830cc3942d0d4c926d (diff)
Merge pull request #16 from digitalcraftsman/404-page
Added a 404 page
-rw-r--r--layouts/404.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..822572d
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,12 @@
+{{ partial "head.html" . }}
+<body>
+
+{{ partial "sidebar.html" . }}
+
+ <div class="content container">
+ <h1>404: Page not found</h1>
+ <p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ .Site.BaseURL }}">Head back home</a> to try finding it again.</p>
+ </div>
+
+ </body>
+</html>