gitlab-org--gitlab-foss/app/views/help/index.html.haml

45 lines
1.4 KiB
Text
Raw Normal View History

.jumbotron
2013-10-27 11:06:02 -04:00
%h2
GitLab
%span= Gitlab::VERSION
%small= Gitlab::REVISION
2013-10-27 11:06:02 -04:00
%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.
2013-10-27 11:06:02 -04:00
%br
Perform code reviews and enhance collaboration with merge requests.
%br
Each project can also have an issue tracker and a wiki.
%br
2014-04-14 07:50:31 -04:00
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 "www.gitlab.com", "https://www.gitlab.com/", target: "_blank"}.
2013-01-05 17:30:38 -05:00
.row
.col-md-4
2013-01-05 17:30:38 -05:00
.ui-box
.title
2013-07-13 13:36:21 -04:00
Quick help
2013-01-05 17:30:38 -05:00
%ul.well-list
%li
See our website for
= link_to "getting help", "https://www.gitlab.com/getting-help/"
2013-01-18 19:35:16 -05:00
%li
Use the
2013-03-06 14:39:10 -05:00
= link_to "search bar", '#', onclick: "$('#search').focus();"
2013-01-18 19:35:16 -05:00
on the top of this page
%li
Use
= link_to "shortcuts", '#', onclick: "new Shortcuts()"
2014-04-15 12:01:54 -04:00
.col-md-8
.ui-box.documentation
.title Documentation
2014-04-15 12:01:54 -04:00
= preserve do
2014-05-28 08:37:08 -04:00
- readme_text = File.read(Rails.root.join("doc", "README.md"))
- text = readme_text.dup
- readme_text.scan(/\]\(([^(]+)\)/) { |match| text.gsub!(match.first, "help/#{match.first}") }
= markdown text