aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/blog_controller.rb
blob: 314c919d62545345aabc3156919c142d66c1218e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Refinery
  class BlogController < ::ApplicationController
    
    include Blog::ControllerHelper

    helper :'refinery/blog_posts'
    before_filter :find_page, :find_all_blog_categories

    protected

    def find_page
      @page = Refinery::Page.find_by_link_url("/blog")
    end
  end
end