_recent_comments.rhtml
来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RHTML 代码 · 共 10 行
RHTML
10 行
<h2><%= _("Recent comments")%></h2><ul class="recent"><% for comment in Comment.find(:all, :limit => 5, :order => 'id DESC' ) %> <li> <h4><%= truncate(comment.author, 20) %></h4> <div><%= link_to truncate(comment.body, 20), :controller => "/admin/comments", :action => "show", :id => comment.id, :article_id => comment.article_id %></div> <p class="right"><%= time_ago_in_words(comment.created_at) %> ago</p> </li><% end %></ul>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?