summaryrefslogtreecommitdiffstats
path: root/src/layouts/404.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/404.hbs')
-rw-r--r--src/layouts/404.hbs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/layouts/404.hbs b/src/layouts/404.hbs
new file mode 100644
index 0000000..c697e1d
--- /dev/null
+++ b/src/layouts/404.hbs
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>{{title}}{{#if site.title}} :: {{site.title}}{{/if}}</title>
+ <link rel="stylesheet" href="{{or uiRootPath themeRootPath}}/css/site.css">
+{{> head}}
+ </head>
+ <body class="status-404">
+{{> header}}
+ <div class="main-wrapper">
+ <main class="main" role="main">
+ <article class="doc">
+ <h1>Page Not Found</h1>
+ </article>
+ </main>
+ </div>
+{{> footer}}
+ </body>
+</html>