recently/000075500007650000120000000000001042252763600135435ustar00ryenskiadmin00000000000000recently/content.rhtml000064400007650000120000000004121032727611600162600ustar00ryenskiadmin00000000000000<% unless @recently.blank? %>

Recently...

<% for article in @recently %>
<%= article_link article.title, article %>
<%= article.created_at.strftime("%B %d, %Y") %>
<% end %>
<% end -%>recently_controller.rb000064400007650000120000000004401042252760100163210ustar00ryenskiadmin00000000000000class Plugins::Sidebars::RecentlyController < Sidebars::ComponentPlugin description 'Displays the most recent articles' setting :count, 10, :label => 'Number of Articles' def content @recently = Article.find(:all, :limit => count, :order => "created_at DESC") end end