forked from slate/slate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (35 loc) · 1016 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Slate</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="build/build.css">
</head>
<body>
<script>
window.node = window.require;
</script>
<script src="build/build.js"></script>
<div id="slate">
<div id="titlebar">
<div id="window-menu" class="menu">
<a href="#"></a>
<ul class="menu-items">
<li><a href="#" id="fullscreen-window">Fullscreen</a></li>
<li><a href="#" id="maximize-window">Maximize</a></li>
<li><a href="#" id="minimize-window">Minimize</a></li>
<li><a href="#" id="close-window">Close</a></li>
</ul>
</div>
</div>
<div id="content">
<div id="channels">
</div>
</div>
<textarea id="message-input" placeholder="Message"></textarea>
</div>
<script>
slate();
</script>
</body>
</html>