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