Commit 75447fb044d767a5bda7c707e58a0456318c021a
1 parent
8a5b770c
Exists in
master
and in
4 other branches
Redo help#help_pages partial
Showing
1 changed file
with
40 additions
and
13 deletions
Show diff stats
app/views/help/index.html.haml
... | ... | @@ -12,40 +12,67 @@ |
12 | 12 | %br |
13 | 13 | |
14 | 14 | .row |
15 | - .span6 | |
15 | + .span4 | |
16 | 16 | .ui-box |
17 | 17 | .title |
18 | - %h5 Help | |
18 | + %h5 Quick help | |
19 | 19 | %ul.well-list |
20 | 20 | %li |
21 | - %span= link_to "Workflow", help_workflow_path | |
21 | + Email your | |
22 | + = mail_to Gitlab.config.gitlab.support_email, "support contact" | |
23 | + %li | |
24 | + Use the | |
25 | + = link_to "search bar", '#', onclick: "$("#search").focus();" | |
26 | + on the top of this page | |
27 | + %li | |
28 | + Ask in our | |
29 | + = link_to "support forum", "https://groups.google.com/forum/#!forum/gitlabhq" | |
30 | + %li | |
31 | + Browse our | |
32 | + = link_to "issue tracker", "https://github.com/gitlabhq/gitlabhq/issues" | |
33 | + .span4 | |
34 | + .ui-box | |
35 | + .title | |
36 | + %h5 User documentation | |
37 | + %ul.well-list | |
38 | + %li | |
39 | + %strong= link_to "Workflow", help_workflow_path | |
40 | + %p Learn how to use Git and GitLab together. | |
22 | 41 | |
23 | 42 | %li |
24 | - %span= link_to "Permissions", help_permissions_path | |
43 | + %strong= link_to "SSH keys", help_ssh_path | |
44 | + %p Setup secure access to your projects. | |
25 | 45 | |
26 | 46 | %li |
27 | - %span= link_to "Web Hooks", help_web_hooks_path | |
47 | + %strong= link_to "GitLab Markdown", help_markdown_path | |
48 | + %p Learn what you can do with GitLab's advanced formatting system. | |
28 | 49 | |
29 | 50 | %li |
30 | - %span= link_to "API", help_api_path | |
51 | + %strong= link_to "Permissions", help_permissions_path | |
52 | + %p Get familiar with GitLab's permission levels. | |
31 | 53 | |
32 | 54 | %li |
33 | - %span= link_to "GitLab Markdown", help_markdown_path | |
55 | + %strong= link_to "API", help_api_path | |
56 | + %p Explore how you can access GitLab via a simple and powerful API. | |
34 | 57 | |
35 | 58 | %li |
36 | - %span= link_to "SSH keys", help_ssh_path | |
59 | + %strong= link_to "Web Hooks", help_web_hooks_path | |
60 | + %p Let GitLab notify you when new code has been pushed to your project. | |
37 | 61 | |
38 | - .span6 | |
62 | + .span4 | |
39 | 63 | .ui-box |
40 | 64 | .title |
41 | - %h5 Admin Guide | |
65 | + %h5 Admin documentation | |
42 | 66 | %ul.well-list |
43 | 67 | |
44 | 68 | %li |
45 | - %span= link_to "GitLab Rake Tasks", help_raketasks_path | |
69 | + %strong= link_to "Rake Tasks", help_raketasks_path | |
70 | + %p Explore what GitLab has in store for you to make administration easier. | |
46 | 71 | |
47 | 72 | %li |
48 | - %span= link_to "System Hooks", help_system_hooks_path | |
73 | + %strong= link_to "System Hooks", help_system_hooks_path | |
74 | + %p Let GitLab notify you when certain management tasks need to be carried out. | |
49 | 75 | |
50 | 76 | %li |
51 | - %span= link_to "Public Area", help_public_area_path | |
77 | + %strong= link_to "Public Access", help_public_access_path | |
78 | + %p Learn how you can allow public access to a project. | ... | ... |