Right now I have :header => {:html => {:template => \"layouts/pdf_header.html.erb\"}} setting things up. Is there something I can pass in that will on
:header => {:html => {:template => \"layouts/pdf_header.html.erb\"}}
Add layout when rendering pdf
format.pdf do render :pdf => "my_pdf", :layout => 'pdf end
views/layouts/pdf.haml
%html %head %body = render "layouts/header" = yield = render "layouts/footer"