bloat/templates/error.tmpl

13 lines
285 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
2019-12-26 09:11:24 +00:00
<div class="error-text"> {{.Error}} </div>
2019-12-19 16:19:44 +00:00
<div>
2020-01-14 16:57:16 +00:00
<a href="/timeline/home">Home</a>
2020-02-18 22:15:37 +00:00
<a href="/signin" target="_top">Sign In</a>
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}}