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: b32e8875a82377b7a34a610589324829c0fe3f89 (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
77
78
79
80
81
82
83
84
85
86
---
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 itemprop="url" href="<%= @items["/#{product[:slug]}/#{product[:index_file]}"].path %>">
              <div class="wrapper">
                <h2 itemprop="name"><%= 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>
      <a href="">
        <div class="wrapper flex-container flex-column">
          <img src="/assets/images/docs-gitlab.svg" alt="gitlab line logo">
          <h2 itemprop="name">GitLab</h2>
          <p>Browse user and administration documentation and guides for GitLab Community Edition, Enterprise Edition, and GitLab.com.</p>
        </div>
      </a>
    </li>
    <li>
      <a href="">
        <div class="wrapper flex-container flex-column">
          <img src="/assets/images/docs-omnibus.svg" alt="gitlab omnibus icon">
          <h2 itemprop="name">Omnibus</h2>
          <p>Browse installation, configuration, maintenance, and troubleshooting documentation for Omnibus GitLab.</p>
        </div>
      </a>
    </li>
    <li>
      <a href="">
        <div class="wrapper flex-container flex-column">
          <img src="/assets/images/docs-runner.svg" alt="gitlab runner icon">
          <h2 itemprop="name">Runner</h2>
          <p>Browse installation, configuration, maintenance, and troubleshooting documentation for GitLab Runner.</p>
        </div>
      </a>
    </li>
  </ul>
</div>
<div class="popular-topics">
  <h1>Most popular topics</h1>
  <div class="topics-container flex-container">
    <a class="topic" href="">
      <h4>CI/CD YAML reference</h4>
      <p>Learn how to configure gitlab-ci.yml for your project.</p>
    </a>
    <a class="topic" href="">
      <h4>API</h4>
      <p>Automate GitLab via a simple and powerful API.</p>
    </a>
    <a class="topic" href="">
      <h4>SSH</h4>
      <p>Learn how to create an SSH key pair and configure GitLab to authenticate via SSH from your local computer.</p>
    </a>
    <a class="topic" href="">
      <h4>GitLab.com Settings</h4>
      <p>Information about the settings that are used on GitLab.com, like SSH keys fingerprints, shared Runners configuration, etc.</p>
    </a>
  </div>
</div>