bloat/templates/error.tmpl

13 lines
285 B
Cheetah
Raw Normal View History

2020-01-14 18:57:16 +02:00
{{with .Data}}
2020-02-19 00:15:37 +02:00
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
2019-12-19 18:19:44 +02:00
<div class="page-title"> Error </div>
2020-01-14 18:57:16 +02:00
2019-12-26 11:11:24 +02:00
<div class="error-text"> {{.Error}} </div>
2019-12-19 18:19:44 +02:00
<div>
2020-01-14 18:57:16 +02:00
<a href="/timeline/home">Home</a>
2020-02-19 00:15:37 +02:00
<a href="/signin" target="_top">Sign In</a>
2019-12-19 18:19:44 +02:00
</div>
2019-12-13 20:08:26 +02:00
2020-01-14 18:57:16 +02:00
{{template "footer.tmpl"}}
{{end}}