You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
532 B
27 lines
532 B
<h1>Article#index</h1>
|
|
<p>Find me in app/views/articles/index.html.erb</p>
|
|
|
|
|
|
<h1>Articles</h1>
|
|
<%= link_to "New Article", new_article_path %>
|
|
|
|
<ul>
|
|
<% @articles.each do |article| %>
|
|
<li>
|
|
<a href="/articles/<%= article.id %>">
|
|
<%= article.title %>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="<%= article_path(article) %>">
|
|
<%= article.title %>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<%= link_to article.title, article %> | <%= link_to "Edit", edit_article_path(article) %>
|
|
</li>
|
|
|
|
<% end %>
|
|
</ul>
|
|
|
|
|
|
|