Welcome to mirror list, hosted at ThFree Co, Russian Federation.

brand_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 103468a8ce3b69425a670e915c214d26c5173958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module BrandHelper
  def brand_title
    'GitLab Community Edition'
  end

  def brand_image
    image_tag 'brand_logo.png'
  end

  def brand_text
    default_text =<<eos
### GitLab is open source software to collaborate on code.

Manage git repositories with fine grained access controls that keep your code secure.
Perform code reviews and enhance collaboration with merge requests.
Each project can also have an issue tracker and a wiki.

Used by more than 50,000 organizations, GitLab is the most popular solution to manage git repositories on-premises.
Read more about GitLab at #{link_to "www.gitlab.com", "https://www.gitlab.com/", target: "_blank"}.
eos
    markdown default_text
  end
end