mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
1d61f1aa27
This uses better color contrast and component spacing to improve legibility. The updated HTML also has better compatibility with browsers with limited/no CSS support.
17 lines
327 B
Cheetah
17 lines
327 B
Cheetah
{{with .Data}}
|
|
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
|
|
<h1>Error</h1>
|
|
|
|
<p>{{.Err}}</p>
|
|
<div>
|
|
<a href="/timeline/home">home</a>
|
|
{{if .Retry}}
|
|
<a href="{{$.Ctx.Referrer}}">retry</a>
|
|
{{end}}
|
|
{{if .SessionErr}}
|
|
<a href="/signin" target="_top">signin</a>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|