I\'m trying to nest content tags into a custom helper, to create something like this:
A Label &l
building nested content tags with iteration is a little different and gets me every time... here is one method:
content_tag :div do friends.pluck(:firstname).map do |first| concat( content_tag(:div, first, class: 'first') ) end end