|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 8 | + |
| 9 | + <title>Spacebin</title> |
| 10 | + |
| 11 | + <meta property="og:title" content="Spacebin: Text sharing for the final frontier" /> |
| 12 | + <meta property="og:url" content="spaceb.in" /> |
| 13 | + <meta property="og:type" content="website" /> |
| 14 | + <meta property="og:description" |
| 15 | + content="A highly-reliable pastebin server, built in Go, that's capable of serving notes, code, or any other documents." /> |
| 16 | + <meta name="description" |
| 17 | + content="Spacebin is a highly-reliable pastebin server, built with Go, that's capable of serving notes, code, or any other documents." /> |
| 18 | + <meta property="og:color" content="#e34b4a" /> |
| 19 | + |
| 20 | + <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| 21 | + <link rel="stylesheet" type="text/css" href="/static/normalize.css"> |
| 22 | + <link rel="stylesheet" type="text/css" href="/static/global.css"> |
| 23 | +</head> |
| 24 | + |
| 25 | +<body> |
| 26 | + <header> |
| 27 | + <img src="/static/logo.svg" alt="Spacebin Logo" /> |
| 28 | + |
| 29 | + <a id="home" href="/" aria-label="Spacebin Home Page"> |
| 30 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" |
| 31 | + class="main-grid-item-icon" fill="none" stroke="currentColor" stroke-linecap="round" |
| 32 | + stroke-linejoin="round" stroke-width="2"> |
| 33 | + <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" /> |
| 34 | + <polyline points="9 22 9 12 15 12 15 22" /> |
| 35 | + </svg> |
| 36 | + </a> |
| 37 | + |
| 38 | + |
| 39 | + <a id="github" href="https://github.com/orca-group/spirit" aria-label="Spacebin Github"> |
| 40 | + <svg fill="none" height="24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
| 41 | + stroke-width="2" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"> |
| 42 | + <path |
| 43 | + d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" /> |
| 44 | + </svg> |
| 45 | + </a> |
| 46 | + |
| 47 | + <a id="wiki" href="https://github.com/orca-group/spirit/blob/main/README.md/#-spirit" |
| 48 | + aria-label="Spacebin Documentation"> |
| 49 | + <svg fill="none" height="24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" |
| 50 | + stroke-width="2" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"> |
| 51 | + <path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z" /> |
| 52 | + <path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" /> |
| 53 | + </svg> |
| 54 | + </a> |
| 55 | + |
| 56 | + <p id="donate" aria-label="Spacebin Donation Page"> |
| 57 | + Keep Spacebin free of ads by <a href="https://github.com/sponsors/lukewhrit">donating</a>. ❤️ |
| 58 | + </p> |
| 59 | + </header> |
| 60 | + |
| 61 | + <main> |
| 62 | + <h1 id="error"> |
| 63 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="28" height="28" id="warning" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"> |
| 64 | + <circle cx="12" cy="12" r="10" /> |
| 65 | + <line x1="12" x2="12" y1="8" y2="12" /> |
| 66 | + <line x1="12" x2="12.01" y1="16" y2="16" /> |
| 67 | + </svg> |
| 68 | + {{.Status}} |
| 69 | + </h1> |
| 70 | + <p>{{.Error}}</p> |
| 71 | + </main> |
| 72 | + |
| 73 | + <script src="/static/app.js"></script> |
| 74 | +</body> |
| 75 | + |
| 76 | +</html> |
0 commit comments