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

index.html.haml « help « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c74aac5ef52133d327436efcd784d23821ddc36 (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
45
46
47
48
49
50
51
52
53
%div
- if Gitlab::CurrentSettings.help_page_text.present?
  .gl-mt-3.md
    = markdown_field(Gitlab::CurrentSettings.current_application_settings, :help_page_text)
  %hr

.gl-display-flex.gl-align-items-flex-end
  %h1.gl-mt-5.gl-mb-3
    = default_brand_title
    - if user_signed_in?
      %span= link_to_version
  - if show_version_check?
    %span.gl-mt-5.gl-mb-3.gl-ml-3
      .js-gitlab-version-check-badge{ data: { "size": "lg", "actionable": "true" } }
%hr

- unless Gitlab::CurrentSettings.help_page_hide_commercial_content?
  %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
    - link_to_promo = link_to(promo_host, promo_url, target: '_blank', rel: 'noopener noreferrer')
    = _("Read more about GitLab at %{link_to_promo}.").html_safe % { link_to_promo: link_to_promo }

%p= link_to _('Check the current instance configuration '), help_instance_configuration_url
%hr

.row.gl-mt-3
  .col-md-8
    .md
      = markdown(@help_index)
  .col-md-4
    .card.links-card
      .card-header
        = _('Quick help')
      %ul.content-list
        %li= link_to _('See our website for help'), support_url, { class: 'gl-text-blue-600!' }
        %li
          %button.btn-blank.btn-link.js-trigger-search-bar{ type: 'button' }
            = _('Use the search bar on the top of this page')
        %li
          %button.btn-blank.btn-link.js-trigger-shortcut{ type: 'button' }
            = _('Use shortcuts')
        - unless Gitlab::CurrentSettings.help_page_hide_commercial_content?
          %li= link_to _('Get a support subscription'), "https://#{ApplicationHelper.promo_host}/pricing/", { class: 'gl-text-blue-600!' }
          %li= link_to _('Compare GitLab editions'), "https://#{ApplicationHelper.promo_host}/features/#compare", { class: 'gl-text-blue-600!' }