You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/gotime/smplt/canned_responses.go

23 lines
355 B

package smplt
var (
HTTP_500_RESPONSE = []byte(`
<!DOCTYPE html>
<html>
<head>
<title>500 Internal Server Error</title>
<style type="text/css">
body {
color: #fff;
background: #f00;
}
</style>
</head>
<body>
<h1>500 Internal Server Error</h1>
<p>Something go boom inside.</p>
</body>
</html>
`)
)