1 2 3 4 5 6 7 8 9 10 11 12
class SidebarBlogCategory < SidebarModule def initialize(category) @title = category.title @position = category.sidebar_position @posts = category.posts.recent(category.sidebar_items) end def body @posts end end