summaryrefslogtreecommitdiff
path: root/app/views/help/index.html.haml
blob: 021de4f0cafb7e42aea40f22b72ba0e9247d1fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
%div
- if current_application_settings.help_page_text.present?
  = markdown_field(current_application_settings, :help_page_text)
  %hr

- unless current_application_settings.help_page_hide_commercial_content?
  %h1
    GitLab
    Community Edition
    - if user_signed_in?
      %span= Gitlab::VERSION
      %small= link_to Gitlab::REVISION, Gitlab::COM_URL + namespace_project_commits_path('gitlab-org', 'gitlab-ce', Gitlab::REVISION)
      = version_status_badge

  %p.slead
    GitLab is open source software to collaborate on code.
    %br
    Manage git repositories with fine-grained access controls that keep your code secure.
    %br
    Perform code reviews and enhance collaboration with merge requests.
    %br
    Each project can also have an issue tracker and a wiki.
    %br
    Used by more than 100,000 organizations, GitLab is the most popular solution to manage git repositories on-premises.
    %br
    Read more about GitLab at #{link_to promo_host, promo_url, target: '_blank', rel: 'noopener noreferrer'}.
    %p= link_to 'Check the current instance configuration ', help_instance_configuration_url
  %hr

.row.prepend-top-default
  .col-md-8
    .documentation-index.wiki
      = markdown(@help_index)
  .col-md-4
    .panel.panel-default
      .panel-heading
        Quick help
      %ul.well-list
        %li= link_to 'See our website for getting help', support_url
        %li= link_to 'Use the search bar on the top of this page', '#', onclick: 'Shortcuts.focusSearch(event)'
        %li= link_to 'Use shortcuts', '#', onclick: 'Shortcuts.toggleHelp()'
        - unless current_application_settings.help_page_hide_commercial_content?
          %li= link_to 'Get a support subscription', 'https://about.gitlab.com/pricing/'
          %li= link_to 'Compare GitLab editions', 'https://about.gitlab.com/features/#compare'