<%= following.length %> following
<% for (let user of following) { %>
<%- include('user-clickable.ejs', {user: user.target}) %>
<%} %>
<%= followers.length %> followers
<% for (let user of followers) { %>
<%- include('user-clickable.ejs', {user: user.username}) %>
<%} %>