aboutsummaryrefslogtreecommitdiff
path: root/templates/following.tmpl
blob: 50413d500206e12b6737e49fd8a300d71abff47b (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 .NextLink}}
		<a href="{{.NextLink}}">next</a>
	{{end}}
</div>

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