Sfoglia il codice sorgente

Added a 404 page

This addition implements the design of the original 404 page.
digitalcraftsman 9 anni fa
parent
commit
5b9efdbc1f
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. 12
    0
      layouts/404.html

+ 12
- 0
layouts/404.html Vedi File

@@ -0,0 +1,12 @@
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>