2014-12-07 52 views

回答

1

隨着泛音,

_my_partial.html.haml

#my_mixin.myclass(style="background:#{background}") 
    %hr 
    %h2= text 
    %p= text1 

然後在視圖

= render _my_partial, :background =>'img.png', :text => 'Lorem', :text1 => 'Ipsum...' 
= render _my_partial, :background =>'img1.png', :text => 'Lorem2', :text1 => 'Ipsum3...'