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

github.com/wileybaba/hugo-theme-robotico.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.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..d552a63
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,12 @@
+{{ define "main" }}
+ <div class="container">
+ <div class="my-5 text-center">
+ {{ if isset .Site.Params "logofile" }}
+ <img src="{{ .Site.Params.logofile | absURL }}" alt="logo" style="max-height:125px;" />
+ {{ end }}
+ <h1 class="my-5">404</h1>
+ <h2 class="mb-3">The page you were looking for does not exist.</h2>
+ <a href="/">Visit the home page</a>
+ </div>
+ </div>
+{{ end }}