mirror of
https://github.com/urbit/shrub.git
synced 2024-12-13 06:25:09 +03:00
17 lines
447 B
HTML
17 lines
447 B
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"/>
|
||
|
<link rel="stylesheet" href="/~chat/css/index.css" />
|
||
|
</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>
|