9920551536
This commit alters views for the following models to use the markdown cache if present: * AbuseReport * Appearance * ApplicationSetting * BroadcastMessage * Group * Issue * Label * MergeRequest * Milestone * Project At the same time, calls to `escape_once` have been moved into the `single_line` Banzai pipeline, so they can't be missed out by accident and the work is done at save, rather than render, time.
41 lines
1.5 KiB
Text
41 lines
1.5 KiB
Text
%div
|
|
%h1
|
|
GitLab
|
|
Community Edition
|
|
- if user_signed_in?
|
|
%span= Gitlab::VERSION
|
|
%small= 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'}.
|
|
- if current_application_settings.help_page_text.present?
|
|
%hr
|
|
= markdown_field(current_application_settings, :help_page_text)
|
|
|
|
%hr
|
|
|
|
.row
|
|
.col-md-8
|
|
.documentation-index
|
|
= preserve do
|
|
= 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', promo_url + '/getting-help/'
|
|
%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()'
|
|
%li= link_to 'Get a support subscription', 'https://about.gitlab.com/pricing/'
|
|
%li= link_to 'Compare GitLab editions', 'https://about.gitlab.com/features/#compare'
|