File: 404.html

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (73 lines) | stat: -rw-r--r-- 1,591 bytes parent folder | download
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
  <meta content="width=device-width, initial-scale=1" name="viewport">
  <title>The page you're looking for could not be found (404)</title>
  <style>
    body {
      color: #333238;
      text-align: center;
      font-family: "Nunito Sans", -apple-system, ".SFNSText-Regular", "San Francisco", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    h1 {
      font-size: 1.75rem;
      line-height: 2.25rem;
      margin: 1rem 0;
    }

    p {
      margin-bottom: .5rem;
    }

    img {
      display: block;
      margin: 0 auto;
    }

    a {
      text-decoration: none;
      color: #1068bf;
    }

    a:hover {
      text-decoration: underline;
    }

    .error-container {
      max-width: 65ch;
      margin: auto;
      padding: 1rem 0;
    }

    .action-container {
      margin-top: 1.5rem;
    }

    .go-back {
      display: none;
    }
  </style>
</head>

<body>
  <div class="error-container">
    <img src='/-/error-illustrations/error-404-lg.svg' alt="404 error"/>
    <h1>404: Page not found</h1>
    <p>Make sure the address is correct and the page has not moved.</p>
    <p>Please contact your GitLab administrator if you think this is a mistake.</p>
    <div class="action-container">
      <a href="javascript:history.back()" class="js-go-back go-back">Go back</a>
    </div>
  </div>
  <script>
    (function () {
      var goBack = document.querySelector('.js-go-back');

      if (history.length > 1) {
        goBack.style.display = 'inline';
      }
    })();
  </script>
</body>
</html>