rendering layout from different controller
render :template => '<controller/action>'
Say your in tags controller in the show action. You can use the template found in <project>/apps/views/lists/index.rhtml
def show [boring action logic] render :template => 'lists/index' end