People
<% if (peopleList && peopleList.length > 0) { %>
View All →
<% } %>
<% if (peopleList && peopleList.length > 0) { %>
<% _.each(peopleList, function(person) {
var avatarImg = person.thumbnail_url || person.avatar || '👤';
var hasImg = person.thumbnail_url ? true : false;
%>
<% if (hasImg) { %>

<% } else { %>
<%= avatarImg %>
<% } %>
<%= person.name %>
<% }); %>
<% } else { %>
No people yet
Once photos of people are added, they'll appear here
<% } %>