each ループ内で、それがループの開始点であるか、またはインデックスが 5 の倍数である場合、HTML 要素を出力したいと思います。
- images.each do |image, index|
- if index == 1 || index == 5 || index == 10 || index == 15 # this is not scalable!
.row-fluid
.span2
div.image-wrapper
= image_tag image.url
これをRubyで表現するより良い方法はありますか?
span2
1 つの div 内に最大 5 つの div を出力したいと考えていますrow-fluid
。