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: 429c3d70b5663d19c64e6a5f1c5c57487c097e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: GitLab Documentation
---

<ul class="topics">
  <% @config[:products].each do |name, product| %>
    <% if product[:expose] == true %>
      <li class="topic-<%= product[:slug] %>">
        <a href="<%= @items["/#{product[:slug]}/#{product[:index_file]}"].path %>">
          <div class="wrapper">
            <h2><%= product[:full_name] %></h2>
            <p><%= product[:description] %></p>
          </div>
        </a>
      </li>
    <% end %>
  <% end %>
</ul>