aboutsummaryrefslogtreecommitdiff
path: root/templates/followers.tmpl
blob: 8102b26908eb429d518e6d139e929a4aec55b698 (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"> Followers </div>

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

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