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

github.com/st-wong/hugo-spectre-pixel-theme.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.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..46c5d63
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+<article class="container p-centered text-center mt-space">
+ <header>
+ <img src="{{ "images/lost.png" | absURL }}">
+ </header>
+ <section class="my-gap">
+ <h2>{{ .Site.Params.title404 | default "404 - Page not found" }}</h2>
+ <h3 class="text-gray text-italic">{{ .Site.Params.subtitle404 | default "The content you're looking for doesn't seem to exist." }}</h3>
+ </section>
+ <footer>
+ <a class="btn btn-action btn-accent shadow s-circle" href='{{ .Site.BaseURL }}'><i class="fas fa-home"></i></a>
+ </footer>
+</article>
+{{ end }}