bloat/templates/timeline.tmpl

20 lines
388 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-25 06:30:21 +02:00
<div class="page-title"> {{.Title}} </div>
2019-12-13 20:08:26 +02:00
{{range .Statuses}}
2020-01-14 18:57:16 +02:00
{{template "status.tmpl" (WithContext . $.Ctx)}}
2019-12-13 20:08:26 +02:00
{{end}}
2019-12-15 08:55:13 +02:00
<div class="pagination">
2020-01-28 19:51:00 +02:00
{{if .PrevLink}}
2019-12-15 08:55:13 +02:00
<a href="{{.PrevLink}}">prev</a>
{{end}}
2020-01-28 19:51:00 +02:00
{{if .NextLink}}
2019-12-15 08:55:13 +02:00
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
2020-01-14 18:57:16 +02:00
2019-12-13 20:08:26 +02:00
{{template "footer.tmpl"}}
2020-01-14 18:57:16 +02:00
{{end}}