Browse Source

Added a 404 page

This addition implements the design of the original 404 page.
digitalcraftsman 9 years ago
parent
commit
5b9efdbc1f
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      layouts/404.html

+ 12
- 0
layouts/404.html View File

1
+{{ partial "head.html" . }}
2
+<body>
3
+
4
+{{ partial "sidebar.html" . }}
5
+
6
+    <div class="content container">
7
+      <h1>404: Page not found</h1>
8
+        <p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="/">Head back home</a> to try finding it again.</p>
9
+    </div>
10
+
11
+  </body>
12
+</html>