summaryrefslogtreecommitdiff
path: root/app/helpers/in_product_marketing_helper.rb
blob: 09546f251f98f6dab113c91f0829bfccd9f159f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module InProductMarketingHelper
  def inline_image_link(image, options)
    attachments.inline[image] = File.read(Rails.root.join("app/assets/images", image))
    image_tag attachments[image].url, **options
  end

  def about_link(image, width)
    link_to inline_image_link(image, { width: width, style: "width: #{width}px;", alt: s_('InProductMarketing|go to about.gitlab.com') }), 'https://about.gitlab.com/'
  end
end