bloat/templates/timeline.tmpl

21 lines
409 B
Cheetah
Raw Normal View History

{{template "header.tmpl" .HeaderData}}
2019-12-15 17:37:58 +00:00
{{template "navigation.tmpl" .NavbarData}}
2019-12-25 04:30:21 +00:00
<div class="page-title"> {{.Title}} </div>
2019-12-13 18:08:26 +00:00
{{template "postform.tmpl" .PostContext}}
2019-12-13 18:08:26 +00:00
{{range .Statuses}}
{{template "status.tmpl" .}}
{{end}}
2019-12-15 06:55:13 +00:00
<div class="pagination">
{{if .HasPrev}}
<a href="{{.PrevLink}}">prev</a>
{{end}}
{{if .HasNext}}
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
2019-12-13 18:08:26 +00:00
{{template "footer.tmpl"}}