I have a rails app and I want to render an action without using my application layout (which has page header / footer stuff in it).
How could I go about doing this?
For Rails 5, in the controller, for the specific action:
def action render layout: false end