bloat/templates/timeline.tmpl
r 2678f33157 Add support for scopes
- Add scope selection for for new post
- Save new post scope in db
- Copy scope on reply
- Show scope icon on posts
2019-12-21 13:26:31 +00:00

21 lines
395 B
Cheetah

{{template "header.tmpl"}}
{{template "navigation.tmpl" .NavbarData}}
<div class="page-title"> Timeline </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"}}