2014-09-18 12:21:07 -04:00
|
|
|
<!doctype html>
|
|
|
|
<head>
|
|
|
|
<title>Cryptalk</title>
|
|
|
|
|
2015-12-29 18:38:05 -05:00
|
|
|
<meta charset="utf-8">
|
2014-09-22 16:11:13 -04:00
|
|
|
|
2015-12-29 18:38:05 -05:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/default.css">
|
|
|
|
<link rel="icon" type="image/png" href="gfx/icon_32x32.png">
|
|
|
|
|
2017-02-07 15:19:23 -05:00
|
|
|
<script src="js/vendor/requirejs-2.3.2/require.js"></script>
|
|
|
|
|
2014-09-18 12:21:07 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- Messages -->
|
|
|
|
<!-- Each message is contained within an li element -->
|
|
|
|
<ul id="chat">
|
|
|
|
<li>SRV> Booting ...</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<!-- Message input -->
|
2014-09-21 19:04:52 -04:00
|
|
|
<div id="input_wrapper" class="loading">
|
|
|
|
<div id="loader"><span>|</span></div>
|
2014-09-18 12:21:07 -04:00
|
|
|
<input type="text" id="input" />
|
|
|
|
</div>
|
2014-09-21 19:04:52 -04:00
|
|
|
|
2017-02-07 15:19:23 -05:00
|
|
|
<!--
|
|
|
|
Production JS
|
2017-02-08 15:24:58 -05:00
|
|
|
-->
|
2017-02-07 15:19:23 -05:00
|
|
|
<script src="js/cryptalk.min.js"></script>
|
2017-02-22 16:22:28 -05:00
|
|
|
|
2017-02-07 15:19:23 -05:00
|
|
|
<!--
|
|
|
|
Development JS
|
2017-02-22 16:22:28 -05:00
|
|
|
|
2017-02-07 15:19:23 -05:00
|
|
|
<script src="js/lib/main.js"></script>
|
|
|
|
-->
|
|
|
|
|
2014-09-18 12:21:07 -04:00
|
|
|
</body>
|
2014-09-24 16:12:28 -04:00
|
|
|
</html>
|