-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en" data-scheme="light">
<head>
<meta charset="utf-8" />
<title>IndieFeed.link</title>
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/favicon-64x64.png" sizes="64x64" />
<link rel="icon" type="image/png" href="/favicon-2048x2048.png" sizes="2048x2048" />
<link rel="apple-touch-icon" href="/favicon-192x192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="A landing page for web feeds" />
<meta property="og:type" content="website" />
<meta property="og:title" content="IndieFeed.link" />
<meta property="og:description" content="A landing page for web feeds" />
<meta property="og:image" content="/favicon-2048x2048.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="2048" />
<meta property="og:image:height" content="2048" />
<meta property="og:image:alt" content="The RSS logo inside a circle" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="IndieFeed.link" />
<meta property="twitter:description" content="A landing page for web feeds" />
<meta property="twitter:image" content="/favicon-2048x2048.png" />
<meta property="twitter:image:alt" content="The RSS logo inside a circle" />
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>