mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
2678f33157
- Add scope selection for for new post - Save new post scope in db - Copy scope on reply - Show scope icon on posts
21 lines
395 B
Cheetah
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"}}
|