diff options
author | digitalcraftsman <digitalcraftsman@users.noreply.github.com> | 2015-07-13 23:42:56 +0200 |
---|---|---|
committer | digitalcraftsman <digitalcraftsman@users.noreply.github.com> | 2015-07-13 23:42:56 +0200 |
commit | 2d0f48c7f8ed5c1ef5ee0e8a4c52b309a1a5e648 (patch) | |
tree | 55c360f4ec0a6760b28d18ccee7fb4aeb5e14fcf /layouts/404.html | |
parent | d84c5080b69a2ef40ad73ca2dc15e7afa7716c97 (diff) | |
parent | 11adcd3d1496c75d8eff40830cc3942d0d4c926d (diff) |
Merge pull request #16 from digitalcraftsman/404-page
Added a 404 page
Diffstat (limited to 'layouts/404.html')
-rw-r--r-- | layouts/404.html | 12 |
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> |