Skip to content

Instantly share code, notes, and snippets.

@up1
Created November 10, 2008 14:52
Show Gist options
  • Save up1/23498 to your computer and use it in GitHub Desktop.
Save up1/23498 to your computer and use it in GitHub Desktop.
<p>Recent Posts:</p>
<div id="posts">
<%= partial("shared/post", :with => @posts) %>
</div>
สร้าง views/shared/_post.html.erb
<div id="post-<%= post.id %>" class="post">
<p class="body"><%= h(post.body) %></p>
<p class="created"><%= relative_date(post.create_date) %></p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment