-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (54 loc) · 2.35 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kanban Board</title>
<link href='http://fonts.googleapis.com/css?family=Coming+Soon' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.min.css">
<!--link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css"-->
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.3/handlebars.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/ember.js/1.0.0-rc.2/ember.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="lib/ember-data/ember-data.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<script type="text/x-handlebars" id="projects">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner"></div>
</div>
<div class="container">
<div>
{{view Em.Select class="project-select"
contentBinding="content"
selectionBinding="selected"
optionLabelPath="content.name"
prompt="Please select a project"}}
</div>
<div>
{{outlet}}
</div>
</div>
</script>
<script type="text/x-handlebars" id="projects/index">
<p><small>no project selected</small></p>
</script>
<script type="text/x-handlebars" id="swimlane">
<div class="swimlane-inner">
<h4>{{view.title}}</h4>
<ul class="unstyled">
{{#each view.tickets}}
{{view App.TicketView}}
{{else}}
<li>no tickets</li>
{{/each}}
</ul>
</div>
</script>
<script type="text/x-handlebars" id="ticket">
{{id}} - {{title}}
</script>
</body>
</html>