diff options
author | amzrk2 | 2020-04-15 16:20:50 +0800 |
---|---|---|
committer | amzrk2 | 2020-04-15 16:20:50 +0800 |
commit | 1ecf3f618122f22fdd6111312d45e971e4aefb84 (patch) | |
tree | 46c83b5bcd75f41107978a096144b13c09d75b96 /layouts/404.html | |
parent | b4e6be8688ec5b41e27c3d0977a5831315740f32 (diff) | |
download | hugo-theme-fuji-1ecf3f618122f22fdd6111312d45e971e4aefb84.tar.gz hugo-theme-fuji-1ecf3f618122f22fdd6111312d45e971e4aefb84.tar.bz2 hugo-theme-fuji-1ecf3f618122f22fdd6111312d45e971e4aefb84.zip |
Add 404 page
Diffstat (limited to 'layouts/404.html')
-rw-r--r-- | layouts/404.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..a4ab2b7 --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,14 @@ +{{ define "main" }} +<main> + <div class="container-lg clearfix"> + <!-- list --> + <div class="col-md-9 col-12 float-left" id="content"> + <span id="not-found">404 NOT FOUND</span> + </div> + <!-- sidebar --> + <div class="col-md-3 col-12 float-left" id="sidebar"> + {{ partial "sidebar.html" . }} + </div> + </div> +</main> +{{ end }}
\ No newline at end of file |