2021-09-11 11:37:31 +00:00
|
|
|
{{ define "content" }}
|
2023-08-03 11:04:10 +00:00
|
|
|
<main class="container error-message">
|
2021-09-11 11:37:31 +00:00
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<h2>{{ if .details.ErrorCode }}
|
|
|
|
<strong>{{ .details.ErrorCode }}</strong> {{ end }}{{ .details.ErrorMessage }}</h2>
|
|
|
|
{{ if .details.ErrorDetails }}
|
|
|
|
{{ range .details.ErrorDetails }}
|
|
|
|
<p>{{ . }}</p>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2023-08-03 11:04:10 +00:00
|
|
|
</main>
|
2021-09-11 11:37:31 +00:00
|
|
|
{{ end }}
|