ruby on rails - Sharing partials among layouts -
i have couple of layouts main.html.haml
, alternative.html.haml
, share elements. have partial share between them.
using render ='my_partial'
doesn't seem work. how should go it?
if have created partial inside layouts folder then
try this
<%= render :partial => 'layouts/partial' %>
hope you
Comments
Post a Comment