Files

40 lines
522 B
Ruby
Raw Permalink Normal View History

class WpController < ApplicationController
layout false
caches_page :header, :footer, :get_meta_tags, :get_page_include, :post_ad_stdl, :sidebar_ad,
:blv_sidebar_ad, :post_ad_blv
def sweep
SiteSweeper.sweep
render :nothing => true
end
def header
@blog = true
end
def footer
end
def get_meta_tags
end
def get_page_include
end
def get_tracker
end
def post_ad_stdl
end
def post_ad_blv
end
def sidebar_ad
end
def blv_sidebar_ad
end
end