module DownloadHelper def quote(testimonial) text = @testimonial ? @testimonial.text : t('txt.download_page.quote_text') author = @testimonial ? @testimonial.author : t('txt.download_page.quote_author') content = ['
'] content << "
#{text}
" content << "#{author}" content << "
" content.join("\n") end end