Skip to content

Instantly share code, notes, and snippets.

@manveru
Forked from thbar/domain-based-layout-ramaze.rb
Created December 11, 2009 16:45
Show Gist options
  • Save manveru/254330 to your computer and use it in GitHub Desktop.
Save manveru/254330 to your computer and use it in GitHub Desktop.
layout do |path, wish|
if path !~ /feed|show/
mobile_rendering? ? :mobile : :main
end
end
def self.mobile_rendering?
(request.host =~ /m\.learnivore/) ? true : false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment