Little tip to allow the use of helper methods in controllers
A little tip i've found while watching a rails cast that i found useful...
In a controller, there's a "@template" instance that you can call helper methods on.
example
Helper -
def default_title
"Ruby on Rails Specialists | Savantis "
end
Controller -
def index
@meta_title = @content.meta_title + @template.default_title
end

