aboutsummaryrefslogtreecommitdiff
path: root/templates/error.tmpl
blob: c8da1e669b5ee1758f7b59d081cfd35e7fd370e6 (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)}}
<div class="page-title"> Error </div>

<div class="error-text"> {{.Err}} </div>
<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}}