thelounge/client/index.html
2014-06-02 23:08:03 +02:00

155 lines
3 KiB
HTML

<!doctype html>
<html>
<head>
<title>Shout — The modern IRC client</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div id="wrap">
<div id="viewport">
<aside id="sidebar">
<section>
<h1>Shout</h1>
</section>
<div id="networks">
</div>
</aside>
<div id="main">
<div id="windows">
<div id="shout" class="window"></div>
</div>
<div id="chat">
</div>
</div>
</div>
</div>
<div id="templates">
<script type="text/html" class="networks">
{{#each networks}}
<section id="network-{{id}}" class="network">
<h2>{{name}}</h2>
{{partial "channels"}}
</section>
{{/each}}
</script>
<script type="text/html" class="channels">
{{#each channels}}
<a href="#window-{{id}}" id="channel-{{id}}" class="{{type}}">
<span class="badge"></span>
<span class="close"></span>
{{name}}
</a>
{{/each}}
</script>
<script type="text/html" class="windows">
{{#each windows}}
<div id="window-{{id}}" class="window {{type}}" data-id="{{id}}">
<div class="sidebar">
<div class="meta">
<h1>
{{name}}
</h1>
{{#if users}}
<div class="count">
{{users.length}}
users
</div>
{{else}}
<div class="type">
{{type}}
</div>
{{/if}}
</div>
<ul class="users">
{{partial "users"}}
</ul>
</div>
<div class="chat">
<button class="show-more" data-id="{{id}}">
Show more
</button>
<div class="messages">
{{partial "messages"}}
</div>
</div>
<header class="header">
<button class="lt"></button>
<button class="rt"></button>
<h1>
{{name}}
</h1>
{{#if users}}
<span class="count">
{{users.length}}
users
</span>
{{else}}
<span class="type">
{{type}}
</span>
{{/if}}
</header>
<form class="form" data-target="{{id}}">
<input class="submit" tabindex="-1" type="submit" >
<input class="input">
</form>
</div>
{{/each}}
</script>
<script type="text/html" class="users">
{{#each users}}
<li>
<a href="#{{name}}" class="user">
{{mode}}{{name}}
</a>
</li>
{{/each}}
</script>
<script type="text/html" class="messages">
{{#each messages}}
<div class="row {{type}}">
<span class="from">
<a href="#{{from}}" class="user">
{{from}}
</a>
</span>
<span class="text">
{{#if type}}
<em class="type">
{{type}}
</em>
{{/if}}
{{{uri text}}}
</span>
<span class="time">
{{time}}
</span>
</div>
{{/each}}
</script>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/jquery.plugins.js"></script>
<script src="/js/uri.js"></script>
<script src="/js/handlebars.js"></script>
<script src="/js/chat.js"></script>
</body>
</html>