forked from djcas9/komanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (36 loc) · 1.09 KB
/
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
45
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>komanda</title>
<!-- build:[href] komanda.css -->
<link id="theme-base" rel="stylesheet" href="/app/styles/index.css">
<!-- /build -->
</head>
<body>
<div id="header" style="-webkit-app-region: drag">
<div class="title">
Komanda
</div>
<div class="window-controls">
<div class="window-button close"></div>
<div class="window-button minimize"></div>
<div class="window-button maximize"></div>
</div>
</div>
<div id="wrapper">
<div id="sidebar"></div>
<div id="content">
<div class="komanda-logo-background"></div>
</div>
</div>
<script type="text/javascript">
window.requireNode = window.require;
</script>
<!-- build:[src] komanda.js -->
<script data-main="/app/main" src="/vendor/bower/requirejs/require.js"></script>
<!-- /build -->
</body>
</html>