<%= formatted_time(project.starts_at) %><% if project.ends_at.present? %>–<%= formatted_time(project.ends_at) %>
<% end %>
<% end %>
<% if ['Conference','Introduction'].include?(project.category.name) && project.has_participants? %>
<%= project.participant_names %>
<%= participant_org_links(project.participants) %>
<% elsif ['Tabletop','Arcade'].include?(project.category.name) and project.has_participants? %>
<%= project.title %>
<%= participant_org_links(project.participants) %>
<% else %>
<%= project.title %>
<% if project.category.name == 'Social' %>
<%= project.venue.name %> • <%= link_to project.venue.short_address, project.venue.address_url,target: '_blank', class: 'project--venue--address' %>
<% end %>
<% end %>
<% if project.description.present? %>
<%= project.description.html_safe %>
<% end %>
<% if ['Conference','Introduction'].include?(project.category.name) && project.has_participants? %>
<%= participant_twitter_links(project.participants) %>
<% end %>