thelounge/client/index.html

130 lines
2.9 KiB
HTML
Raw Normal View History

2014-06-26 18:14:45 +02:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Shout</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="apple-touch-icon" sizes="144x144" href="/img/apple-icon-144x144.png" />
<link rel="shortcut icon" href="/img/favicon.png">
</head>
<body>
<aside id="sidebar">
2014-06-30 03:20:54 +02:00
<div id="networks"></div>
2014-06-26 18:14:45 +02:00
<footer id="footer">
2014-07-07 02:44:31 +02:00
<button id="btn-1" data-target="#connect"></button>
<button id="btn-2" data-target="#settings"></button>
2014-06-26 18:14:45 +02:00
</footer>
</aside>
<div id="main">
<header id="header">
<button id="lt"></button>
<button id="rt"></button>
<h1>#channel</h1>
</header>
<div id="windows">
2014-06-30 03:20:54 +02:00
<div id="chat"></div>
2014-07-07 02:44:31 +02:00
<div id="connect" class="container">
<div class="row">
<div class="col-sm-12">
<h1>Connect</h1>
</div>
</div>
</div>
<div id="settings" class="container">
<div class="row">
<div class="col-sm-12">
<h1>Settings</h1>
</div>
</div>
</div>
2014-06-26 18:14:45 +02:00
</div>
2014-07-07 02:44:31 +02:00
<form id="form" action="">
<input id="submit" tabindex="-1" type="submit">
<input id="input">
</form>
2014-06-26 18:14:45 +02:00
</div>
2014-06-27 02:47:36 +02:00
<div id="templates">
<script type="text/html" class="networks">
{{#each networks}}
2014-07-07 02:44:31 +02:00
<section id="network-{{id}}" class="network">
2014-06-27 02:47:36 +02:00
{{partial "channels"}}
</section>
{{/each}}
</script>
<script type="text/html" class="channels">
{{#each channels}}
2014-07-07 02:44:31 +02:00
<button id="chan-{{id}}" class="chan" data-type="{{type}}">
2014-06-27 02:47:36 +02:00
<span class="badge"></span>
2014-06-30 03:20:54 +02:00
{{name}}
2014-06-27 02:47:36 +02:00
</button>
{{/each}}
</script>
2014-06-30 03:20:54 +02:00
<script type="text/html" class="chat">
<div class="window">
<div id="messages">
{{partial "messages"}}
</div>
</div>
<aside class="sidebar">
{{partial "users"}}
</aside>
</script>
2014-06-27 02:47:36 +02:00
<script type="text/html" class="users">
<div id="meta">
<h1>{{name}}</h1>
2014-06-30 03:20:54 +02:00
<span class="type">
{{type}}
</span>
2014-06-27 02:47:36 +02:00
</div>
2014-07-05 01:32:40 +02:00
{{#if users.length}}
<div id="count">
<input id="search" placeholder="{{users.length}} users">
</div>
{{/if}}
2014-06-27 02:47:36 +02:00
<div id="users">
{{#each users}}
2014-07-07 02:44:31 +02:00
<button class="user">{{mode}}{{name}}</button>
2014-06-27 02:47:36 +02:00
{{/each}}
</div>
</script>
<script type="text/html" class="messages">
{{#each messages}}
2014-06-30 03:20:54 +02:00
<div class="msg {{type}}">
2014-06-27 02:47:36 +02:00
<span class="time">
{{time}}
</span>
<span class="from">
2014-06-30 03:20:54 +02:00
{{#if from}}
2014-07-07 02:44:31 +02:00
<button class="user">{{from}}</button>
2014-06-30 03:20:54 +02:00
{{else}}
//
{{/if}}
2014-06-27 02:47:36 +02:00
</span>
<span class="text">
<em class="type">{{type}}</em>
{{{uri text}}}
</span>
</div>
{{/each}}
</script>
</div>
2014-06-26 18:14:45 +02:00
<script src="js/components.min.js"></script>
2014-06-30 03:20:54 +02:00
<script src="js/chat.js"></script>
2014-06-26 18:14:45 +02:00
</body>
</html>