mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 10:02:47 +03:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!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"/>
|
|
<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" />
|
|
<link rel="apple-touch-icon" href="/~chat/img/touch_icon.png">
|
|
<link rel="stylesheet" href="/~chat/css/index.css" />
|
|
<link rel="icon" type="image/png" href="/~launch/img/Favicon.png">
|
|
<link rel="manifest"
|
|
href='data:application/manifest+json,{
|
|
"name": "Chat",
|
|
"short_name": "Chat",
|
|
"description": "A%20Chat%20application%20for%20your%20Urbit%20ship.",
|
|
"display": "standalone",
|
|
"background_color": "%23FFFFFF",
|
|
"theme_color": "%23000000"}' />
|
|
|
|
</head>
|
|
<body>
|
|
<div id="root"/>
|
|
<script src="/~channel/channel.js"></script>
|
|
<script src="/~modulo/session.js"></script>
|
|
<script src="/~chat/js/index.js"></script>
|
|
</body>
|
|
</html>
|