File: index.html

package info (click to toggle)
ruby-rack 3.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,576 kB
  • sloc: ruby: 15,492; sh: 12; makefile: 7; javascript: 1
file content (48 lines) | stat: -rw-r--r-- 956 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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Rack Documentation</title>
  <style>
    body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      font-family: sans-serif;
      text-align: center;
    }

    img {
      max-width: 50%;
      margin: 1rem;
    }

    a {
      text-decoration: none;
      color: #cc0000;
      font-size: 1.25rem;
    }

    a:hover {
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <img src="main/contrib/logo.webp" alt="Rack Logo">
  <h1>Rack Documentation</h1>

  <h2>Released Versions</h2>

  <p><a href="3.1/index.html">3.1</a></p>
  <p><a href="3.0/index.html">3.0</a></p>
  <p><a href="2.2/index.html">2.2</a></p>

  <h2>Development Branch</h2>

  <p><a href="main/index.html">Main</a></p>
</body>
</html>