Where to put pages not baked by controllers

You can just add a controller to server such pages. You don't need to add actions for each pages. Just put those templates inside controllers's view directory and rails will serve them as rhtml even if you don't have an action defined.

It's a nice idea to have a controller as it'll let you do caching easily.