aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/blog_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/blog_controller.rb')
-rw-r--r--app/controllers/blog_controller.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/controllers/blog_controller.rb b/app/controllers/blog_controller.rb
deleted file mode 100644
index f51d5bb..0000000
--- a/app/controllers/blog_controller.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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