13 lines
194 B
Plaintext
13 lines
194 B
Plaintext
![]() |
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>
|
||
|
}
|
||
|
}
|