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

archives.html « layouts - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ffb8ccaf6d0bd42eed47d1afd7c855b5432f029 (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
<!DOCTYPE HTML>
<html lang="en">
  <head>
    <%= render '/head.*' %>
  </head>
  <body>
    <%= render '/header.*' %>
    <div class="wrapper">
      <div class="main class js-main-wrapper">
        <% if @config[:breadcrumbs] %>
          <% ancestor_array = ancestor_path_array(@item) unless ancestor_path_array(@item).empty? %>
          <% if ancestor_array %>
            <ul class="breadcrumbs">
              <% ancestor_array.reverse_each do |item| %>
                <li class="breadcrumb"><%= link_to item.key?(:title) ? "#{item[:title]}" : "Breadcrumb", item %></li>
              <% end %>
              <li class="breadcrumb"><%= @item.key?(:title) ? "#{@item[:title]}" : "Current page" %></li>
            </ul>
          <% end %>
        <% end %>
        <div id="doc-nav" class="doc-nav">
        </div>
        <% if @item[:title] %>
          <h1 class="article-title">
            <%= @item[:title] %>
          </h1>
        <% end %>
        <div class="article-content js-article-content">
          <%= yield %>
        </div>
      </div>
    </div>
  </body>

  <%= render '/footer.*' %>
  <%= render '/analytics.*' %>
  <%= render '/https_redirect.*' %>
</html>