{{/* error.html is the branded error page shared by every surface (404, 500, …). It renders on whichever base layout the surface defaults to, so the chrome matches the rest of that host. Data: Status (int), Title, Message. */}} {{define "title"}}{{.Status}} · MeshTender{{end}} {{/* The error's own title is the page heading, rendered through the normal page header so this page's h1 matches every other page's. It must be a real (non-empty) definition: Go templates treat a define whose body is only whitespace or comments as EMPTY and do NOT let it replace an existing definition, so the previous `{{define "header"}}{{end}}` silently fell through to base.html's default header — which is why this page used to render a generic "MeshTender" title above the error. */}} {{define "header"}}

{{.Title}}

{{end}} {{define "content"}}
{{.Status}}

{{.Message}}

{{template "icon-home" "me-1"}}Back to home
{{end}}