Listing microposts

<% @microposts.each do |micropost| %> <% end %>
Content User
<%= micropost.content %> <%= micropost.user_id %> <%= link_to 'Show', micropost %> <%= link_to 'Edit', edit_micropost_path(micropost) %> <%= link_to 'Destroy', micropost, confirm: 'Are you sure?', method: :delete %>

<%= link_to 'New Micropost', new_micropost_path %>