summaryrefslogtreecommitdiff
path: root/page/default.go
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-05-14 22:24:58 -0500
committersanine <sanine.not@pm.me>2023-05-14 22:24:58 -0500
commita2f7fd3070513941dded47a7ceb8afce75f337ce (patch)
treef84e71c6b0664bc1ad57743926f28da2511c948c /page/default.go
parent9a7b63bbc3cbce5ac469daf426da08a69c59bed4 (diff)
add permanent redirects for endpoints
Diffstat (limited to 'page/default.go')
-rw-r--r--page/default.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/page/default.go b/page/default.go
index ea51acc..d13689b 100644
--- a/page/default.go
+++ b/page/default.go
@@ -82,7 +82,7 @@ func DefaultError404() (string, error) {
func DefaultError500() (string, error) {
return buildPage(page{
- Title: "500 Not Found",
- Body: "<h1>Error 500: Page not found</h1>",
+ Title: "500 Internal Server Error",
+ Body: "<h1>Error 500: Internal server error</h1>",
})
}