bloat/templates/timeline.tmpl

21 lines
409 B
Cheetah

{{template "header.tmpl" .HeaderData}}
{{template "navigation.tmpl" .NavbarData}}
<div class="page-title"> {{.Title}} </div>
{{template "postform.tmpl" .PostContext}}
{{range .Statuses}}
{{template "status.tmpl" .}}
{{end}}
<div class="pagination">
{{if .HasPrev}}
<a href="{{.PrevLink}}">prev</a>
{{end}}
{{if .HasNext}}
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
{{template "footer.tmpl"}}