Skip to content

Instantly share code, notes, and snippets.

@drinkspiller
Created December 11, 2012 06:38
Show Gist options
  • Save drinkspiller/4256375 to your computer and use it in GitHub Desktop.
Save drinkspiller/4256375 to your computer and use it in GitHub Desktop.
@seo_stuff = SeoSetting.where( '(( controller = ? AND action = ? ) OR path = ? )', params[:controller], params[:action], request.path).limit(1)
if @seo_stuff.any?
@page_title = @seo_stuff.page_title #<-- undefined method `page_title'...but I can see the value in the view
@meta_keywords = @seo_stuff.meta_keywords
@meta_description = @seo_stuff.meta_description
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment