-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (33 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>Solid News</title>
<meta name="title" content="Solid News">
<meta name="description" content="Modern Hacker News app implemented with Solid.js!">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#2C4F7C" />
<link rel="icon" href="/images/logo-512.png" />
<link rel="apple-touch-icon" href="/images/logo-192.png" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://solidnews.lab.pocolifo.com/">
<meta property="og:title" content="Solid News">
<meta property="og:description" content="Modern Hacker News app implemented with Solid.js!">
<meta property="og:image" content="/images/cover.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://solidnews.lab.pocolifo.com/">
<meta property="twitter:title" content="Solid News">
<meta property="twitter:description" content="Modern Hacker News app implemented with Solid.js!">
<meta property="twitter:image" content="/images/cover.png">
<!-- Service worker -->
<script defer src="/register.js"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>