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

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgurusabarish <gurusabarisha@gmail.com>2022-03-23 04:32:07 +0300
committergurusabarish <gurusabarisha@gmail.com>2022-03-23 04:32:07 +0300
commit47bde42590410bfb151c4732da8129e1a9483e36 (patch)
tree9922350e7d5cdab0deb58c99e9c80ad25a397821
parente3fb3dc6beb3546003ad183e39e7d72fca1ede70 (diff)
404 page
-rw-r--r--layouts/404.html15
-rw-r--r--static/404.pngbin0 -> 60659 bytes
2 files changed, 15 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..a5eb6c8
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,15 @@
+{{ define "head" }}
+<meta name="description" content={{ .Site.Params.description }}>
+<link rel="stylesheet" href="/css/index.css" media="all">
+{{ end }}
+
+{{ define "title" }}
+{{ .Site.Title }} | 404 page not found
+{{ end }}
+
+{{ define "main" }}
+<div class="container py-5 text-center">
+ <img src="/404.png" alt="404 page not found" class="img-fluid" width="40%">
+ <h1>404 Page Not Found</h1>
+</div>
+{{ end }} \ No newline at end of file
diff --git a/static/404.png b/static/404.png
new file mode 100644
index 0000000..27d4a44
--- /dev/null
+++ b/static/404.png
Binary files differ