17 lines
351 B
HTML
17 lines
351 B
HTML
|
{{define "page"}}
|
||
|
Error
|
||
|
{{end}}
|
||
|
|
||
|
{{define "body"}}
|
||
|
<section class="hero is-fullheight">
|
||
|
<div class="hero-body">
|
||
|
<div class="container has-text-centered">
|
||
|
<p class="title">{{.Message}} ({{.Status}})</p>
|
||
|
{{if .ErrExists}}
|
||
|
<p>{{.Error}}</p>
|
||
|
{{end}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
{{end}}
|