aboutsummaryrefslogtreecommitdiff
path: root/templates/following.tmpl
blob: 43a60dce959111433aa8f66d434be32fad706c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
<div class="page-title"> Following </div>

{{template "userlist.tmpl" (WithContext .Users $.Ctx)}}
<div class="pagination">
	{{if .HasNext}}
		<a href="{{.NextLink}}">next</a>
	{{end}}
</div>

{{template "footer.tmpl"}}
{{end}}