2019-06-05 00:29:53 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Chat</title>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
|
2019-11-21 04:17:07 +03:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<meta name="apple-touch-fullscreen" content="yes" />
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
2020-05-06 01:27:39 +03:00
|
|
|
<link rel="apple-touch-icon" href="/~landscape/img/touch_icon.png">
|
|
|
|
<link rel="icon" type="image/png" href="/~landscape/img/Favicon.png">
|
2019-11-21 04:17:07 +03:00
|
|
|
<link rel="manifest"
|
2020-01-04 00:06:42 +03:00
|
|
|
href='data:application/manifest+json,{
|
|
|
|
"name": "Chat",
|
|
|
|
"short_name": "Chat",
|
|
|
|
"description": "A%20Chat%20application%20for%20your%20Urbit%20ship.",
|
|
|
|
"display": "standalone",
|
|
|
|
"background_color": "%23FFFFFF",
|
2019-11-21 04:17:07 +03:00
|
|
|
"theme_color": "%23000000"}' />
|
2019-06-05 00:29:53 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-01-29 04:10:15 +03:00
|
|
|
<div id="root"/>
|
2020-05-06 01:27:39 +03:00
|
|
|
<script src="/~landscape/js/channel.js"></script>
|
|
|
|
<script src="/~landscape/js/session.js"></script>
|
|
|
|
<script src="/~landscape/js/index.js"></script>
|
2020-04-27 22:02:48 +03:00
|
|
|
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1.12.min.js"></script>
|
2019-06-05 00:29:53 +03:00
|
|
|
</body>
|
|
|
|
</html>
|