<%= t('tl.title') %>
<%= t('tl.lead') %>
<%- include('../partials/tl-tabs', { active: 'following' }) %>
<% if (typeof success !== 'undefined' && success) { %>
<%= success %>
<% } %>
<% if (typeof error !== 'undefined' && error) { %>
<%= error %>
<% } %>
<% if (following && following.length) { %>
<%= t('tl.following') %> (<%= following.length %>)
<% following.forEach(function(f){ %>
-
<% if (f.icon) { %>
<% } else { %><%= (f.name || '?').charAt(0).toUpperCase() %><% } %>
<%= f.name || f.handle %>
<%= f.handle %>
<% if (f.status === 'pending') { %><%= t('tl.pending') %><% } %>
<% }); %>
<% } else { %>
<%= t('tl.empty_following') %>
<% } %>