<% if user.orcid.present? %>
<%= orcid_label('orcid') %>
<%= link_to user.orcid, user.orcid, { target: '_blank' } %>
<% end %> <% if user.facebook_handle.present? %>
Facebook Handle
<%= link_to user.facebook_handle, "http://facebook.com/#{user.facebook_handle}", {target:'_blank'} %>
<% end %> <% if user.twitter_handle.present? %>
Twitter Handle
<%= link_to user.twitter_handle, "http://twitter.com/#{user.twitter_handle}", {target:'_blank'} %>
<% end %> <% if user.googleplus_handle.present? %>
Google+ Handle
<%= link_to user.googleplus_handle, "http://google.com/+#{user.googleplus_handle}", {target:'_blank'} %>
<% end %> <% if user.linkedin_handle.present? %>
LinkedIn
<%= link_to "#{@linkedInUrl}", "#{@linkedInUrl}", { target: '_blank' } %>
<% end %>
Email
<%= mail_to user.email %>
<% if user.chat_id %>
Chat ID
<%= user.chat_id %>
<% end %> <% if user.website %>
Website(s)
<%= iconify_auto_link(user.website) %>
<% end %> <% if user.title %>
Title
<%= user.title.titleize %>
<% end %> <% if user.admin_area %>
Administrative Area
<%= user.admin_area.titleize %>
<% end %> <% if user.department %>
Department
<%= user.department.titleize %>
<% end %> <% if user.office %>
Office
<%= user.office.titleize %>
<% end %> <% if user.address %>
Address
<%= user.address.titleize %>
<% end %> <% if user.affiliation %>
Affiliation
<%= user.affiliation.titleize %>
<% end %> <% if user.telephone %>
Telephone
<%= link_to_telephone(user) %>
<% end %>