24 lines
403 B
Plaintext
24 lines
403 B
Plaintext
h1 Listing posts
|
|
|
|
table
|
|
thead
|
|
tr
|
|
th Title
|
|
th Body
|
|
th
|
|
th
|
|
th
|
|
|
|
tbody
|
|
- @posts.each do |post|
|
|
tr
|
|
td = post.title
|
|
td = post.body
|
|
td = link_to 'Show', post
|
|
td = link_to 'Edit', edit_post_path(post)
|
|
td = link_to 'Destroy', post, data: { confirm: 'Are you sure?' }, method: :delete
|
|
|
|
br
|
|
|
|
= link_to 'New Post', new_post_path
|