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

github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/404.html')
-rw-r--r--layouts/404.html24
1 files changed, 13 insertions, 11 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 133ac8c..aea87ac 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,13 +1,15 @@
{{ partial "header.html" . }}
-<header class="text-center bg-dark pt-5 pb-5 col-12">
- <h1 class="text-white pt-5 pb-3"><a href="{{ .Site.BaseURL }}" class="text-reset">{{ .Site.Title }}</a></h1>
- <p class="pb-5"></p>
-</header>
-<div class="container pt-3">
- <div class="row pt-3 pb-3">
- <div class="col-12">
- <p>404 page not found</p>
- </div>
- </div>
-</div>
+ <main id="main">
+ <div class="d-flex flex-column justify-content-center bg-skew bg-skew-light overflow-hidden">
+ <div class="container">
+ <div class="row justify-content-lg-center text-center">
+ <div class="col-lg-8">
+ <h1 class="display-4 mb-5 mt-5">Page not found</h1>
+ <p class="lead mb-5">The page you are looking for does not exist.</p>
+ <a href="{{ .Site.BaseURL }}" class="btn btn-primary rounded-pill">Go to home page</a>
+ </div>
+ </div>
+ </div>
+ </div>
+ </main>
{{ partial "footer.html" . }}