%= image_tag contact.avatar.thumb.url, class: 'contact-photo' if contact.avatar.present? %>
<%= contact.name %>
<% Spotlight::Contact.fields.each do |field, options| %>
<% if (value = contact.contact_info[field]).present? %>
<% if options[:helper] %>
<%= send(options[:helper], value) %>
<% else %>
<%= value %>
<% end %>
<% end %>
<% end %>