module ContentBlockTools::Presenters::BlockPresenters::Contact::BlockLevelContactItem

def wrapper(&block)

def wrapper(&block)
  if @rendering_context == :field_names
    content_tag(:div, class: "contact") do
      concat title
      concat yield block
    end
  else
    yield block
  end
end