index.html.erb 330 字节
Newer Older
1 2
<h1>Listing posts</h1>

3 4
<%= link_to 'New post', :action => :new %>

5 6 7
<table>
  <tr>
    <th>Title</th>
8
    <th>Text</th>
9 10 11 12 13 14
    <th></th>
  </tr>

<% @posts.each do |post| %>
  <tr>
    <td><%= post.title %></td>
15 16
    <td><%= post.text %></td>
    <td><%= link_to 'Show', :action => :show, :id => post.id %>
17 18 19
  </tr>
<% end %>
</table>