mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 04:41:37 +03:00
059fb9e1ee
We can no longer rely on landscape to be installed and serving a channel.js, so we bring our own. App discovery works through gall now. We can only ask per desk though, so we still need to talk to clay for the set of desks.
21 lines
550 B
HTML
21 lines
550 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Debug Dashboard</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
<link rel="stylesheet" href="/~debug/css/index.css" />
|
|
<link rel="icon" type="image/png" href="/~launch/img/Favicon.png">
|
|
</head>
|
|
|
|
<body class="w-100 h-100">
|
|
<div id="root" class="w-100 h-100">
|
|
</div>
|
|
<script src="/~debug/js/channel.js"></script>
|
|
<script src="/~debug/js/session.js"></script>
|
|
<script src="/~debug/js/index.js"></script>
|
|
</body>
|
|
|
|
</html>
|