RBOnRails-learning/app/views/articles/index.html.erb
2024-08-07 16:43:33 +02:00

15 lines
339 B
Plaintext

<h1>Articles!</h1>
Our blog has <%= Article.public_count %> articles and counting!
<ul>
<% @articles.each do |article| %>
<% unless article.archived? %>
<li>
<%= link_to article.title, article %>
</li>
<%end%>
<% end %>
</ul>
<%= link_to "New Article", new_article_path %>