ynd-devops-exercise/blog/app/views/articles/index.html.erb

19 lines
361 B
Plaintext

<h1>Listing Articles</h1>
<table>
<tr>
<th>Title</th>
<th>Text</th>
<th></th>
</tr>
<%= link_to 'New article', new_article_path %>
<% @articles.each do |article| %>
<tr>
<td><%= article.title %></td>
<td><%= article.text %></td>
<td><%= link_to 'Show', article_path(article) %></td>
</tr>
<% end %>
</table>