yeyicheng

Untitled

May 6th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <body>
  4.         <h1><%= @post.title %></h1>
  5.         <p><%= @post.content %></p>
  6.         <small><%= @post.created_at %></small>
  7.     </body>
  8. </html>
  9.  
  10.  
  11. <!DOCTYPE html>
  12. <html>
  13.     <head>
  14.       <title>Blog</title>
  15.     </head>
  16.     <body>
  17.         <h1>Our Blog</h1>
  18.         <hr />
  19.         <% @posts.each do |post| %>
  20.             <h2><%= link_to post.title, post %></h2>
  21.             <p><%= post.content %></p>
  22.             <hr />
  23.         <% end %>
  24.     </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment