bloat/templates/following.tmpl

15 lines
366 B
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
2019-12-29 03:43:57 +00:00
<div class="page-title"> Following </div>
2020-01-14 16:57:16 +00:00
{{template "userlist.tmpl" (WithContext .Users $.Ctx)}}
2019-12-29 03:43:57 +00:00
<div class="pagination">
2020-01-28 17:51:00 +00:00
{{if .NextLink}}
2019-12-29 03:43:57 +00:00
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
{{template "footer.tmpl"}}
2020-01-14 16:57:16 +00:00
{{end}}