<%= notice %>

Listing Articles

<% @articles.each do |article| %> <% end %>
Title Content User
<%= article.title %> <%= article.content %> <%= article.user.name %> <%= link_to 'Show', article %> <%= link_to 'Edit', edit_article_path(article) %> <%= link_to 'Destroy', article, method: :delete, data: { confirm: 'Are you sure?' } %>

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