mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-03 04:47:36 +03:00
12 lines
194 B
Text
12 lines
194 B
Text
package views
|
|
|
|
import "strconv"
|
|
|
|
templ ErrorPage(code int, display string) {
|
|
@layout("Error - dumb") {
|
|
<div id="error">
|
|
<h1>{ strconv.Itoa(code) }</h1>
|
|
<p>{ display }</p>
|
|
</div>
|
|
}
|
|
}
|