Advertisement
xenodesystems

Vista Index - Blog en Rails

Jun 9th, 2012
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.34 KB | None | 0 0
  1. <h1> Nuestro Blog </h1>
  2.  
  3. <% @posts.each do |post| %>
  4. <h2><%= link_to post.title, post %></h2>
  5. <p> <%= post.content %> </p>
  6. <p> <%= link_to "Editar", edit_post_path(post) %> |
  7. <%= link_to "Borrar", post, :confirm => "Estas seguro?", :method => :delete %>
  8. </p>
  9. <hr />
  10. <% end %>
  11. <p><%= link_to "Agregar nuevo post", new_post_path %></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement