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: f638d150b875c0a873bfc81c8b03356eb23eb582 (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
<!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">
      <div class="row">
        <div class="col-12 gl-h-100vh gl-display-flex gl-flex-direction-column">
          <main class="gl-mt-5 gl-flex-grow-1 gl-flex-shrink-0"><%= yield %></main>
          <%= render '/footer.*' %>
        </div>
      </div>
    </section>
  <script src="<%= @items['/frontend/shared/global_imports.*'].path %>"></script>

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