20 lines
356 B
Plaintext
20 lines
356 B
Plaintext
package pages
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
"github.com/ekzyis/echo-htmx-templ-tailwindcss/pages/components"
|
|
)
|
|
|
|
templ Error(code int) {
|
|
<html>
|
|
@components.Head()
|
|
@components.Body() {
|
|
@components.Content() {
|
|
@components.Figlet("random", strconv.Itoa(code))
|
|
<div class="font-mono mb-3">{ http.StatusText(code) }</div>
|
|
}
|
|
}
|
|
</html>
|
|
}
|