vote up 3 vote down star
1

I've been a .Net developer for the past seven years or so, and been working with ASP.Net for the last couple of years. I'm now using Ruby on Rails for some projects, and I'm wanting to know if there is something in Ruby on Rails that lets you do master page type stuff?

Basically, I want a way to provide a consistent look and feel for the site with a header and footer and so on, and then just have each page put its content inside of that. How do you accomplish this?

flag

72% accept rate
2  
everyone else calls them "layouts" – Mauricio Scheffer Oct 23 at 16:07
guides.rubyonrails.org/layouts_and_rendering.html/… – Mauricio Scheffer Oct 23 at 16:07
Why can't .NET developers read even the most basic documentation? – NSD Oct 23 at 16:10
@NSD I've searched and didn't find anything on master pages... now that I know they're called layouts outside of the .net environment, I'll go read about it... don't try to stereotype .net developers, there are a lot of very good ones – Max Schmeling Oct 23 at 16:12
Thanks @Mauricio, if you put that on as an answer I'll accept it. – Max Schmeling Oct 23 at 16:13
show 1 more comment

2 Answers

vote up 2 vote down check

You should start by reading the rails documentation.

But the whole of it.
Not only the rendering part, which includes the layouts (equivalent of master).

link|flag
vote up 0 vote down

in your rails project in app/layouts/application.(html.erb|html.haml), this is the layout or equivalent for master. You can also create other layouts and specify the layout to use for each action :

render :index, :layout => "awesome"

Or specify the layout for a whole controller :

class PostController < ActionController::Base
  layout "super_awesome"
end
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.