10 lines
221 B
Plaintext
10 lines
221 B
Plaintext
{{ define "error.gohtml" }}{{ template "base" . }}{{ end }}
|
|
|
|
{{ define "error_content" }}
|
|
<section class="error-panel">
|
|
<p class="eyebrow">Error</p>
|
|
<h1>{{ .Status }}</h1>
|
|
<p>{{ .Message }}</p>
|
|
</section>
|
|
{{ end }}
|