-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
55 lines (50 loc) · 1.03 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Cumulus</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font:
16px/1.5 system-ui,
sans-serif;
color: #222;
background: #fafafa;
}
main {
max-width: 34rem;
padding: 2rem;
}
h1 {
font-weight: 600;
font-size: 1.5rem;
margin: 0 0 0.5rem;
}
p {
margin: 0.5rem 0;
}
a {
color: inherit;
}
</style>
</head>
<body>
<main>
<h1>☁️ Cumulus</h1>
<p>
This is an ATProto blob proxy powered by
<a href="https://github.com/ascorbic/cumulus/">☁️ Cumulus</a>. It serves images and files
from the AT Protocol network; it does not host or own them.
</p>
<p>
To report abuse or request a takedown, contact the account's hosting provider or
<a href="https://bsky.social/about/support">Bluesky support</a>.
</p>
</main>
</body>
</html>