RailsCasts Pro episodes are now free!
Learn more or hide this
Resources
script/generate migration add_layout_to_blogs layout_name:string custom_layout_content:text rake db:migrate gem install liquid
def load_blog @current_blog = Blog.find_by_subdomain(current_subdomain) if @current_blog.nil? flash[:error] = "Blog invalid" redirect_to root_url else self.class.layout(@current_blog.layout_name || 'application') end end
config.gem 'liquid'
<%= Liquid::Template.parse(@current_blog.custom_layout_content). render('page_content' => yield, 'page_title' => yield(:title)) %>
<p> <%= f.label :layout_name %><br /> <%= f.select :layout_name, [["Standard", 'application'], ["Plain", 'plain'], ["Custom", 'custom']] %> </p> <p> <%= f.label :custom_layout_content %><br /> <%= f.text_area :custom_layout_content, :rows => 12 %> </p>
Full Source Code
UPDATE: As Pratik mentioned in the comments, the above code is not thread safe. Here is a better way to handle the layout which is thread safe.
layout :set_layout def load_blog @current_blog = Blog.find_by_subdomain(current_subdomain) if @current_blog.nil? flash[:error] = "Blog invalid" redirect_to root_url end end def set_layout (@current_blog && @current_blog.layout_name) || 'application' end