<%= micropost.content %>
<% unless micropost.tags.empty? %>
Tags:
<% micropost.tags.each do |tag| %>
- <%= link_to tag.name, tag %>
<% end %>
<% end %>
<%= link_to "Edit", edit_micropost_path(micropost) if micropost.user == current_user %>
<%= link_to micropost.created_at.strftime("%Y-%m-%d %H:%M"), micropost %>