aboutsummaryrefslogtreecommitdiff
path: root/templates/error.tmpl
blob: 4763fcff5c2efc244361d393ce23aec7255212b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{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}}