Soc/app/views/microposts/index.html.erb

17 lines
352 B
Plaintext
Raw Normal View History

<h2><%= t(".microposts") %></h2>
<%= link_to t(".new"), new_micropost_path if logged_in? %>
2023-10-05 18:22:31 +00:00
<%= t(".intro_html") %>
<% if @microposts.empty? %>
<p><%= t(".empty") %></p>
<% else %>
<ul id="microposts">
<% @microposts.each do |micropost| %>
<li><%= render micropost %></li>
<% end %>
</ul>
2023-10-13 19:28:35 +00:00
<%= paginate @microposts %>
<% end %>