blob: 43b28b6acca77e1116cbe420104c66f4eda62a5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
title: Server Error
description: Server Error
|---
{{if .Vars}}
{{if .Vars.Error}}
{{.Vars.Error}}
{{else}}
# Internal server error <!--no detailed message available -->
{{end}}
{{else}}
# Internal server error
{{end}}
{{if .Vars}}
{{if .Vars.Description}}
{{.Vars.Description}}
{{else}}
That's all we know.
<!-- No detailed description available -->
{{end}}
{{else}}
That's all we know.
{{end}}
Perhaps you'd like to go back to the [home page](/)?
|