9 lines
252 B
HTML
9 lines
252 B
HTML
{{ define "generic_error" }}
|
|
{{ template "header" .}}
|
|
<p>Unable to {{.Action}} due to the following error:</p>
|
|
<p>{{.Error}}</p>
|
|
<p>Please try again or let the admin know.</p>
|
|
<p><a href="/">Return to homepage</a></p>
|
|
{{template "footer" .}}
|
|
{{ end }}
|