aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/404.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/404.html')
-rw-r--r--layouts/404.html29
1 files changed, 22 insertions, 7 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 5268d0c..96e8505 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,9 +1,24 @@
{{ partial "header.html" . }}
-<div class="content">
- <h2>404 Resource Not Found</h2>
- <p>
- The thing you are looking for can not be found.
- <a href="{{ "/" | relURL }}">Home</a>
- </p>
-</div>
+<main>
+ <header class="header-inline">
+ <div class="heading">
+ <div class="info">
+ <div class="content">
+ {{ if (gt .Params.date 0) }} {{ .Date.Format "January 2, 2006" }} {{ end }} {{ if (gt .Params.author 0) }} by {{ with .Params.author }} {{ . }} {{ end }} {{ end }}
+ </div>
+ </div>
+ <div class="content">
+ <h1>{{ .Title | markdownify }}</h1>
+ </div>
+ </div>
+ </header>
+ <div class="content">
+ <p>
+ The thing you are looking for can not be found.
+ </p>
+ <p>
+ <a href="{{ "/" | relURL }}">Home</a>
+ </p>
+ </div>
+</main>
{{ partial "footer.html" . }}