<%- include('header.ejs') -%>
<%= 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}) %> <%} %>

Uploaded Videos

<%- include('videos.ejs') -%>
<%- include('comments.ejs') -%> <%- include('footer.ejs') -%>