mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
21 lines
383 B
Cheetah
21 lines
383 B
Cheetah
{{template "header.tmpl"}}
|
|
{{template "navigation.tmpl" .NavbarData}}
|
|
<div class="page-title"> Timeline </div>
|
|
|
|
|
|
{{template "postform.tmpl" }}
|
|
|
|
{{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"}}
|