blob: f51d5bb869eeb3d5c99027ad88fcd5532446d41a (
plain) (
tree)
|
|
class BlogController < ApplicationController
helper :blog_posts
before_filter :find_page, :find_all_blog_categories
protected
def find_page
@page = Page.find_by_link_url("/blog")
end
def find_all_blog_categories
@blog_categories = BlogCategory.all
end
end
|