mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-10-31 18:57:16 +00:00
2cb6a515ac
- Add retry button for GET requests - Only show signin button when it's a session error
18 lines
375 B
Cheetah
18 lines
375 B
Cheetah
{{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}}
|