Skip to content

Commit c07ffdf

Browse files
committed
Fix top nav for Not Found errors
The 404 page layout had a stale list of the sections for the top navigation. Fix that.
1 parent 9e1a118 commit c07ffdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layouts/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{{ T "error_404_were_you_looking_for" }}
77
</p>
88
<ul id="error-sections">
9-
{{ $sections := slice "docs" "blog" "training" "partners" "community" "case-studies" }}
9+
{{ $sections := slice "docs" "blog" "training" "careers" "partners" "community" }}
1010
{{ range $sections }}
1111
{{ with site.GetPage "section" . }}<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>{{ end }}
1212
{{ end }}

0 commit comments

Comments
 (0)