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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-03-23 20:52:13 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-03-23 20:52:13 +0300
commit14c1c5f8fd26292e3786482789a4ea5702b7b445 (patch)
tree75ac40ce5f009c61e12f6ad23c2258946dfbba7d /layouts/archives.html
parent7b04bb65015437c3acbe7414f08c19cd74aa390b (diff)
Use the default layout for the archives page
Diffstat (limited to 'layouts/archives.html')
-rw-r--r--layouts/archives.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/layouts/archives.html b/layouts/archives.html
deleted file mode 100644
index 16c6c552..00000000
--- a/layouts/archives.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE HTML>
-<html lang="en">
- <head>
- <%= render '/head.*' %>
- <link rel="canonical" href="<%= @config[:base_url] %>/archives/">
- </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>