Skip to content

Instantly share code, notes, and snippets.

@xdite
Created November 1, 2008 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xdite/21502 to your computer and use it in GitHub Desktop.
Save xdite/21502 to your computer and use it in GitHub Desktop.
<h1>My Blog</h1>
<h2><%= link_to 'New post', new_blog_path %></h2>
<table>
<tr>
</tr>
<% for post in @posts %>
<tr>
<td><%= post.subject %> </td>
<td><%= link_to 'Show', blog_path(post) %></td>
<td><%= link_to 'Edit', edit_blog_path(post) %></td>
<td><%= link_to 'Destroy', blog_path(post), :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment