-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (78 loc) · 2.28 KB
/
index.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<title>blooop - Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
<link rel="manifest" href="/img/site.webmanifest">
<link rel="mask-icon" href="/img/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/img/favicon.ico">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="/img/browserconfig.xml">
<meta name="theme-color" content="#2b5797">
<style>
:root
{
--text-color: #fff;
--background-color: #222;
--link-color: #0077cc;
}
@media (prefers-color-scheme: light)
{
:root
{
--text-color: #222;
--background-color: #fff;
--link-color: #0077cc;
}
}
body
{
color: var(--text-color);
background-color: var(--background-color);
font-family: Verdana, sans-serif;
}
a
{
display: inline-block;
color: var(--link-color);
}
h1, h2, h3, h4, h5, h6
{
color: var(--text-color);
}
p
{
color: var(--text-color);
line-height: 1.5em;
}
a:hover
{
text-decoration: underline;
}
</style>
</head>
<body>
<div style="display:flex;">
<img src="/img/logo.png" style="width:100px;">
<h1>Welcome to blooop!</h1>
</div>
<h2>About this project</h2>
<p>
RSS feed aggregator for vtubers schedule tweets.<br />
Browse the <a href="/docs">API documentation</a>
</p>
<h2>Our calendars</h2>
<p>
<a href="https://www.holocal.moe" target=" _blank">Hololive EN+ID</a><br />
<a href="https://nijien.vercel.app" target=" _blank">Nijisanji EN</a>
</p>
<h2>Issues or contributions</h2>
<p>
<a href="https://github.com/Steeven9/blooop" target=" _blank">GitHub</a>
</p>
</body>
</html>