2019-12-13 18:08:26 +00:00
|
|
|
{{template "header.tmpl"}}
|
2019-12-15 17:37:58 +00:00
|
|
|
{{template "navigation.tmpl" .NavbarData}}
|
2019-12-13 20:04:28 +00:00
|
|
|
<div class="page-title"> Timeline </div>
|
2019-12-13 18:08:26 +00:00
|
|
|
|
2019-12-21 08:36:44 +00:00
|
|
|
|
2019-12-21 13:26:31 +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"}}
|