2023-05-24 23:20:05 +04:00
|
|
|
|
extends base.jade
|
|
|
|
|
|
|
|
|
|
block header
|
2023-05-24 23:50:10 +04:00
|
|
|
|
h1 Еггог
|
2023-05-24 23:20:05 +04:00
|
|
|
|
|
|
|
|
|
block body
|
2023-08-22 18:20:13 +04:00
|
|
|
|
:go:func ErrorXXX(mainSite string, code int, errorMsg string)
|
2023-05-24 23:20:05 +04:00
|
|
|
|
section#error
|
|
|
|
|
h1 #{code}
|
|
|
|
|
| #{http.StatusText(code)}
|
|
|
|
|
if errorMsg != ""
|
2023-05-26 04:36:07 +04:00
|
|
|
|
p #{errorMsg}
|
2023-05-27 19:31:52 +04:00
|
|
|
|
center
|
|
|
|
|
a(href="/") Back to index page
|