Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kishaningithub/hugo-creative-portfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaitlin Newson <kaitlin.newson@gmail.com>2018-05-02 18:30:11 +0300
committerGitHub <noreply@github.com>2018-05-02 18:30:11 +0300
commit0295a8d315f15bbcf0563d0bbbb4e02b09d08fcb (patch)
tree1911086c5d921369c7b25d7fdcd96e679053a965
parent3548c1090690d5ae493a0f6a6ccb8ebb2214788f (diff)
Add a 404 page layout
-rw-r--r--layouts/404.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
index e69de29..d17060a 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -0,0 +1,13 @@
+{{ define "main" }}
+<div class="col-xs-12 col-sm-8 col-md-9 content-column white-background">
+ {{ partial "mobile_nav_toggle.html" . }}
+ <div class="row">
+ <div class="col-lg-8">
+ <div class="content-column-content">
+ <h1>Page not found</h1>
+ <p><a href="{{ .Site.BaseURL }}">Return to the home page</a>.</p>
+ </div>
+ </div>
+ </div>
+</div>
+{{ end }}