%#
# @file
# Located at /
# Shows 3 most recently created topics, synapses, and maps.
#%>
To get in touch, follow or tweet at us! @metamapps.
Recently Created Topics <%= link_to "see all", topics_url%>
<% @topics.each do |topic| %>
<%= render topic %>
<% end %>
Recently Created Synapses <%= link_to "see all", synapses_url%>
<% @synapses.each do |synapse| %>
<%= render synapse %>
<% end %>
Recently Created Maps <%= link_to "see all", maps_url%>
<% @maps.each do |map| %>
<%= render map %>
<% end %>
Home