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

github.com/hossainemruz/toha.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 eb0e307..5eb5533 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,11 +1,13 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>404 Page</title>
-</head>
-<body>
- <h1>It seems you got lost....</h1>
-</body>
-</html> \ No newline at end of file
+{{ define "navbar" }}
+ {{ partial "navbar-2.html" (dict "baseURL" .Site.BaseURL "title" .Site.Title "hasToggleButton" true) }}
+{{ end }}
+
+{{ define "content" }}
+<div class="notFound">
+ <img src="/assets/images/404.png" alt="">
+ <div class="message">
+ <h1>404</h1>
+ <h4>The page you are looking for is not done yet.</h4>
+ </div>
+</div>
+{{ end }}