Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.erb « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1173bc9f95e65fb560f9fda93d9d49275956efef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
title: GitLab Documentation
---
<div class="row">
  <ul class="topics" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
    <% if ENV['NANOC_ENV'] == 'production' %>
      <% @config[:products].each do |name, product| %>
        <% if product[:expose] == true %>
          <li class="topic topic-<%= product[:slug] %>">
            <a href="<%= @items["/#{product[:slug]}/#{product[:index_file]}"].path %>">
              <div class="wrapper">
                <h2><%= product[:short_name] %></h2>
                <p><%= product[:description] %></p>
              </div>
            </a>
          </li>
        <% end %>
      <% end %>
    <% else %>
      <% @config[:products].each do |name, product| %>
        <% if Dir.exist?("#{@config[:content_dir]}/#{product[:slug]}")%>
          <li class="topic topic-<%= product[:slug] %>">
            <a href="<%= @items["/#{product[:slug]}/#{product[:index_file]}"].path %>">
              <div class="wrapper">
                <h2><%= product[:short_name] %></h2>
                <p><%= product[:description] %></p>
              </div>
            </a>
          </li>
        <% end %>
      <% end %>
    <% end %>
  </ul>
</div>
<div class="row">
  <ul class="topics">
    <li class="subtopic topic-ci">
      <a href="ee/ci/yaml/">
        <div class="wrapper">
          <h2>CI/CD YAML reference</h2>
          <p>Learn how to configure <code>.gitlab-ci.yml</code> for your project.
          </p>
        </div>
      </a>
    </li>
    <li class="subtopic topic-api">
      <a href="ee/api/">
        <div class="wrapper">
          <h2>API</h2>
          <p>Automate GitLab via a simple and powerful API.</p>
        </div>
      </a>
    </li>
    <li class="subtopic topic-ssh">
      <a href="ee/ssh/">
        <div class="wrapper">
          <h2>SSH</h2>
          <p>Learn how to create an SSH key pair and configure GitLab to
             authenticate via SSH from your local computer.
          </p>
        </div>
      </a>
    </li>
    <li class="subtopic topic-com-settings">
      <a href="ee/user/gitlab_com/">
        <div class="wrapper">
          <h2>GitLab.com settings</h2>
          <p>
          Information about the settings that are used on GitLab.com, like SSH
          keys fingerprints, shared Runners configuration, etc.
          </p>
        </div>
      </a>
    </li>
  </ul>
</div>