2014-09-02 18:07:02 +05:30
|
|
|
%div
|
2018-03-17 18:26:18 +05:30
|
|
|
- if Gitlab::CurrentSettings.help_page_text.present?
|
2020-07-28 23:09:34 +05:30
|
|
|
.gl-mt-3.md
|
2019-07-31 22:56:46 +05:30
|
|
|
= markdown_field(Gitlab::CurrentSettings.current_application_settings, :help_page_text)
|
2018-03-17 18:26:18 +05:30
|
|
|
%hr
|
|
|
|
|
|
|
|
%h1
|
2019-09-04 21:01:54 +05:30
|
|
|
= default_brand_title
|
2018-03-17 18:26:18 +05:30
|
|
|
- if user_signed_in?
|
2018-12-05 23:21:45 +05:30
|
|
|
%span= link_to_version
|
2018-03-17 18:26:18 +05:30
|
|
|
= version_status_badge
|
2017-09-10 17:25:29 +05:30
|
|
|
%hr
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
- unless Gitlab::CurrentSettings.help_page_hide_commercial_content?
|
2014-09-02 18:07:02 +05:30
|
|
|
%p.slead
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('GitLab is open source software to collaborate on code.')
|
2014-09-02 18:07:02 +05:30
|
|
|
%br
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Manage git repositories with fine-grained access controls that keep your code secure.')
|
2014-09-02 18:07:02 +05:30
|
|
|
%br
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Perform code reviews and enhance collaboration with merge requests.')
|
2014-09-02 18:07:02 +05:30
|
|
|
%br
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Each project can also have an issue tracker and a wiki.')
|
2014-09-02 18:07:02 +05:30
|
|
|
%br
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Used by more than 100,000 organizations, GitLab is the most popular solution to manage git repositories on-premises.')
|
2014-09-02 18:07:02 +05:30
|
|
|
%br
|
2021-04-29 21:17:54 +05:30
|
|
|
- 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 }
|
2019-07-31 22:56:46 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
%p= link_to _('Check the current instance configuration '), help_instance_configuration_url
|
2019-07-31 22:56:46 +05:30
|
|
|
%hr
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
.row.gl-mt-3
|
2014-09-02 18:07:02 +05:30
|
|
|
.col-md-8
|
2019-07-07 11:18:12 +05:30
|
|
|
.documentation-index.md
|
2017-08-17 22:00:37 +05:30
|
|
|
= markdown(@help_index)
|
2014-09-02 18:07:02 +05:30
|
|
|
.col-md-4
|
2019-09-30 21:07:59 +05:30
|
|
|
.card.links-card
|
2018-11-08 19:23:39 +05:30
|
|
|
.card-header
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Quick help')
|
2018-11-08 19:23:39 +05:30
|
|
|
%ul.content-list
|
2021-09-30 23:02:18 +05:30
|
|
|
%li= link_to _('See our website for help'), support_url
|
2018-03-17 18:26:18 +05:30
|
|
|
%li
|
|
|
|
%button.btn-blank.btn-link.js-trigger-search-bar{ type: 'button' }
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Use the search bar on the top of this page')
|
2018-03-17 18:26:18 +05:30
|
|
|
%li
|
|
|
|
%button.btn-blank.btn-link.js-trigger-shortcut{ type: 'button' }
|
2021-04-29 21:17:54 +05:30
|
|
|
= _('Use shortcuts')
|
2018-03-17 18:26:18 +05:30
|
|
|
- unless Gitlab::CurrentSettings.help_page_hide_commercial_content?
|
2021-04-29 21:17:54 +05:30
|
|
|
%li= link_to _('Get a support subscription'), 'https://about.gitlab.com/pricing/'
|
|
|
|
%li= link_to _('Compare GitLab editions'), 'https://about.gitlab.com/features/#compare'
|