<h1>GuestBook Example -- Display All Comments Page</h1> <p><%= link_to 'New Comment Page', { :action => 'new' } %></p> <% @all_comments.each do |c| %> <p><%= c.name %> <%= c.created_at.to_s %><br /> <%= c.message %></p> <% end %>