Add simple themes to your rails applications
Gemfile:
gem "themes"
Run bundler and then create your first theme:
$ bundle install
$ rails generate themes:new my_theme [email protected]
It will generate a configuration file.
# encoding: utf-8
class Themes::Loader
def self.configure(app)
app.config.theme.name = 'my_theme'
app.config.theme.email = '[email protected]'
development do
# Place development environment stuff here
end
production do
# Place production environment stuff here
end
test do
# Place test environment stuff here
end
end
end
Folders to place views files and assets will be created.
- app/assets/javascripts/my_theme
- app/assets/stylesheets/my_theme
- app/views/themes/my_theme
## Main features:
- allow app to load diferent configuration depending on theme
- Load theme using APP_THEME environment variable
- Load views based on theme directory
- Use differnt theme depending on domain name