-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
82 lines (64 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="./" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pony House</title>
<meta content="website" property="og:type" />
<meta name="name" content="Pony House - Matrix Client" />
<meta name="author" content="JasminDreasond (Yasmin Seidel)" />
<meta name="description"
content="A Private Matrix client where you can enjoy the conversation using simple, elegant and secure interface protected by e2ee with the power of open source." />
<meta name="keywords"
content="cinny, cinnyapp, cinnychat, matrix, matrix client, matrix.org, element, jasmindreasond, pony, house, pony house, tiny jasmini" />
<meta property="og:site_name" content="Pony House" />
<meta property="og:title" content="Pony House" />
<meta property="og:url" content="https://client.pony.house" />
<meta property="og:image" content="./img/png/cinny.png" />
<meta property="og:description"
content="A Private Matrix client where you can enjoy the conversation using simple, elegant and secure interface protected by e2ee with the power of open source." />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#212121" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f6f6f6" />
<link href="./img/png/cinny.ico" id="app-favicon" rel="icon" type="image/x-icon">
<link rel="manifest" href="./manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Pony House" />
<meta name="apple-mobile-web-app-title" content="Pony House" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<script type="importmap">
{
"imports": {
"qrcode": "./js/qrcode/browser.js"
}
}
</script>
<script type="module">
import * as qrcode from 'qrcode';
import { Buffer } from 'buffer';
global.qrcode = qrcode;
global.Buffer = Buffer;
</script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('deviceready', function () { console.log('[device] Ready') });
</script>
<link rel="apple-touch-icon" sizes="57x57" href="./img/apple/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="./img/apple/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="./img/apple/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="./img/apple/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="./img/apple/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="./img/apple/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="./img/apple/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="./img/apple/apple-touch-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="167x167" href="./img/apple/apple-touch-icon-167x167.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple/apple-touch-icon-180x180.png" />
</head>
<body id="appBody">
<script> window.global ||= window; var OLM_OPTIONS; </script>
<div id="root"></div>
<script type="module" src="./src/index.jsx"></script>
</body>
</html>