Files
gralias/components/error.html
2025-07-16 07:34:44 +03:00

10 lines
278 B
HTML

{{define "error"}}
<a href="/">
<div id=errorbox class="bg-orange-100 border-l-4 border-black text-black p-4" role="alert">
<p class="font-bold">An error from server</p>
<p>{{.}}</p>
<p>Click this banner to return to main page.</p>
</div>
</a>
{{end}}