Grafting the new server to the new backbone client
[KiwiIRC.git] / client_backbone / index.jade
1 html
2 head
3 meta(http-equiv='Content-Type', content='text/html; charset=UTF-8')
4 title KiwiIRC
5 link(rel='stylesheet', type='text/css', href='/css/style.css')
6 script
7 document.write(unescape('%3Cscript type="text/javascript" src="' + document.location.protocol + '//' + document.location.host + '/socket.io/socket.io.js"%3E%3C/script%3E'));
8 body
9 #kiwi
10 #toolbar
11 ul.panellist.channels
12 #topic
13 input(type='text')
14 #panels
15 .panel_container.container1
16 #memberlists
17 #controlbox
18 .input
19 span.nick
20 .input_wrap
21 input.inp(type='text')
22 script#tmpl_userbox(type='text/x-jquery-tmpl')
23 <div class="userbox">
24 <a class="query">Message</a>
25 <a class="info">Info</a>
26 </div>
27 script(src='all.js')
28 script
29 $(function () {
30 kiwi.app = new kiwi.model.Application({container: $('body')[0]});
31 });