<%= t(".microposts") %>
<%= link_to t(".new"), new_micropost_path if logged_in? %>
<%= t(".intro_html") %>
<% if @microposts.empty? %>
<%= t(".empty") %>
<% else %>
<% @microposts.each do |micropost| %>
- <%= render micropost %>
<% end %>
<%= paginate @microposts %>
<% end %>