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

404.html « layouts - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc54df7893835b6c090bab8a93c3a22c8018e690 (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
<!DOCTYPE HTML>
<html lang="en">
  <head>
    <%= render '/head.*' %>
    <meta name="robots" content="noindex">
    <link rel="canonical" href="<%= @config[:base_url] %>/404.html">
  </head>
  <body>
    <%= render '/header.*' %>
    <section class="container-fluid mt-5 pt-5">
      <div class="row">
        <div class="col-12">
          <%= yield %>
          <%= render '/footer.*' %>
      </div>
    </div>
  </section>
  <script src="<%= @items['/frontend/shared/global_imports.*'].path %>"></script>

  <% if @config[:algolia] == "true" %>
  <script src="<%= @items['/frontend/search/docsearch.*'].path %>"></script>
  <% end %>

  <% if production? %>
  <%# Add analytics only in production %>
    <%= render '/analytics.*' %>
  <% end %>
  </body>
</html>