bloat/templates/error.tmpl

18 lines
375 B
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
2020-02-18 22:15:37 +00:00
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
2019-12-19 16:19:44 +00:00
<div class="page-title"> Error </div>
2020-01-14 16:57:16 +00:00
<div class="error-text"> {{.Err}} </div>
2019-12-19 16:19:44 +00:00
<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}}
2019-12-19 16:19:44 +00:00
</div>
2019-12-13 18:08:26 +00:00
2020-01-14 16:57:16 +00:00
{{template "footer.tmpl"}}
{{end}}