aboutsummaryrefslogblamecommitdiffstats
path: root/guides/code/getting_started/app/views/posts/index.html.erb
blob: 455a74b17fb53e2891fbad125c60fcbf0e033f43 (plain) (tree)
1
2
3
4
5
6
7
8

                      

                                          

       
                  
                 




                           
                              

                                                               


         
<h1>Listing posts</h1>

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

<table>
  <tr>
    <th>Title</th>
    <th>Text</th>
    <th></th>
  </tr>

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