up1 (owner)

Revisions

gist: 23498 Download_button fork
public
Public Clone URL: git://gist.github.com/23498.git
Embed All Files: show embed
HTML #
1
2
3
4
5
6
7
8
9
10
11
<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>