Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @recent_articles = Article.get_recent
  2.  
  3. - cache(cache_key_for_recent_articles) do
  4. %h3 RECENT ARTICLES
  5. - @recent_articles.each do |article|
  6. .recent-article
  7. = link_to add_glyph_to_link("glyphicon glyphicon-chevron-right", article.name), article_path(article, recent: true)
  8. - if Article.count > 4
  9. = link_to "MORE ARTICLES", articles_path(), class: "btn btn-primary more-articles"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement