Listing articles

<% for article in @articles %> <% end %>
Title Summary Content
<%=h article.title %> <%=h article.summary %> <%=h article.content %> <%= link_to 'Show', article %> <%= link_to 'Edit', edit_article_path(article) %> <%= link_to 'Destroy', article, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New article', new_article_path %>