Skip to content

Commit 913f290

Browse files
committed
Fix 404 layout.
1 parent 46e88fb commit 913f290

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

site/content/404.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "404 - File not found"
3+
layout: 404
34
description: ""
45
url: /404.html
56
robots: noindex,follow

site/layouts/_default/404.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
{{ partial "header" . }}
5+
</head>
6+
<body>
7+
{{ partial "skippy" . }}
8+
9+
{{ partial "docs-navbar" . }}
10+
11+
<main class="bd-content p-5" id="content" role="main">
12+
{{ .Content }}
13+
</main>
14+
15+
{{ partial "footer" . }}
16+
{{ partial "scripts" . }}
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)