2019-02-06 23:04:39 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2020-10-26 16:48:04 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2019-09-15 12:22:43 +02:00
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
2020-08-12 11:42:42 +02:00
|
|
|
<meta name="application-name" content="Hydrogen Chat"/>
|
2019-09-15 14:32:12 +02:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
2020-08-12 11:42:42 +02:00
|
|
|
<meta name="apple-mobile-web-app-title" content="Hydrogen Chat">
|
2019-09-15 14:32:12 +02:00
|
|
|
<meta name="description" content="A matrix chat application">
|
2020-10-15 11:17:33 +02:00
|
|
|
<link rel="apple-touch-icon" href="assets/icon-maskable.png">
|
2020-10-26 10:28:11 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="src/platform/web/ui/css/main.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="src/platform/web/ui/css/themes/element/theme.css" title="Element Theme">
|
|
|
|
<link rel="alternate stylesheet" type="text/css" href="src/platform/web/ui/css/themes/bubbles/theme.css" title="Bubbles Theme">
|
2020-10-26 16:48:04 +01:00
|
|
|
</head>
|
|
|
|
<body class="hydrogen">
|
2020-03-23 22:46:31 +01:00
|
|
|
<script id="version" type="disabled">
|
2020-08-12 11:42:42 +02:00
|
|
|
window.HYDROGEN_VERSION = "%%VERSION%%";
|
2020-10-02 19:54:24 +02:00
|
|
|
window.HYDROGEN_GLOBAL_HASH = "%%GLOBAL_HASH%%";
|
2019-09-15 14:32:12 +02:00
|
|
|
</script>
|
2020-10-26 16:48:04 +01:00
|
|
|
<script id="main" type="module">
|
|
|
|
import {main} from "./src/main.js";
|
2020-10-26 15:44:11 +01:00
|
|
|
import {Platform} from "./src/platform/web/Platform.js";
|
2020-10-26 16:48:04 +01:00
|
|
|
main(new Platform(document.body, {
|
2020-09-10 18:41:23 +02:00
|
|
|
worker: "src/worker.js",
|
2020-11-10 17:23:23 +01:00
|
|
|
downloadSandbox: "assets/download-sandbox.html",
|
2020-09-10 18:41:23 +02:00
|
|
|
olm: {
|
|
|
|
wasm: "lib/olm/olm.wasm",
|
|
|
|
legacyBundle: "lib/olm/olm_legacy.js",
|
|
|
|
wasmBundle: "lib/olm/olm.js",
|
|
|
|
}
|
2021-03-01 15:01:43 +01:00
|
|
|
}, null, {development: true}));
|
2020-10-26 16:48:04 +01:00
|
|
|
</script>
|
|
|
|
</body>
|
2019-02-26 22:45:58 +01:00
|
|
|
</html>
|