This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clj-browserchannel/chat-demo/resources/html/index.html
Gered 613c75953b update some project names and links to refer to this forked repo
project name updates are most important as i'll be deploying to clojars
and don't want any conflicts with the existing project
2016-05-07 17:24:35 -04:00

33 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>BrowserChannel</title>
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="default.css" media="screen" />
</head>
<body>
<div id="room">
</div>
<div id="type-bar">
<input id="msg-input" size="30" type="text" disabled="disabled"/>
<input id="send-button" type="button" value="Send" disabled="disabled"/>
</div>
<div class="about"><a href="https://github.com/gered/clj-browserchannel">clj-browserchannel-demo</a></div>
<div class="about">
Written by: Gijs Stuurman
/ <a href="http://twitter.com/thegeez">@thegeez</a>
/ <a href="http://thegeez.github.com">Blog</a> / <a href="https://github.com/thegeez">GitHub</a></div>
{% if dev %}<script type="text/javascript" src="cljs/target/goog/base.js"></script>{% endif %}
<script type="text/javascript" src="cljs/app.js"></script>
{% if dev %}<script type="text/javascript">goog.require('chat_demo.client');</script>{% endif %}
<script type="text/javascript">
chat_demo.client.run();
</script>
</body>
</html>