<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Chat</title>
<link rel="shortcut icon" href="assets/favicon.ico"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link href="build/chat.css" rel="stylesheet"/>
<link rel="stylesheet" href="style.css">
<script src="build/chat.js" charset="utf-8"></script>
<script src="/socket.io/socket.io.js"></script>
</head>
<body class="enyo-unselectable">
<script>
var conversationStore = new ConversationStore();
new ChatClient().renderInto(document.body);
</script>
</body>
</html>