forked from massalabs/gossip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (86 loc) · 2.48 KB
/
index.html
File metadata and controls
93 lines (86 loc) · 2.48 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
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
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="Gossip" />
<title>Gossip</title>
<!-- Modern SVG favicon (preferred by modern browsers) -->
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<!-- PNG favicons with sizes for different contexts -->
<link
rel="icon"
type="image/png"
sizes="96x96"
href="/favicon/favicon-96x96.png"
/>
<!-- Classic ICO favicon for older browsers -->
<link rel="icon" type="image/x-icon" href="/favicon/favicon.ico" />
<!-- Apple Touch Icons for iOS home screen -->
<!-- iOS looks for apple-touch-icon in root first, then checks sizes -->
<link rel="apple-touch-icon" href="/favicon/apple-touch-icon.png" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
/>
<!-- Additional sizes for different iOS devices -->
<link
rel="apple-touch-icon"
sizes="152x152"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="apple-touch-icon"
sizes="57x57"
href="/favicon/apple-touch-icon.png"
/>
<!-- Web App Manifest for PWA (generated by VitePWA) -->
<link rel="manifest" href="/manifest.webmanifest" />
<!-- Theme color for mobile browsers -->
<meta name="theme-color" content="#0d9488" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>