Skip to content

Instantly share code, notes, and snippets.

@swmcc
Created April 27, 2018 10:49
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 swmcc/54c22a55104b731590aff08543775d1c to your computer and use it in GitHub Desktop.
Save swmcc/54c22a55104b731590aff08543775d1c to your computer and use it in GitHub Desktop.
<% @posts.each do |post| %>
<h1><%= link_to "post.title", post %></h1>
<p><%= post.content %></p>
<% end %>
@swmcc
Copy link
Author

swmcc commented Apr 27, 2018

<%= @post.title %>

<%= @post.content %>

<%= link_to "Edit", edit_post_path(@post) %> <%= link_to "Delete", @post, method: :delete, data: { confirm: "Are you sure?" %>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment