forked from encorelab/washago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wall.html
74 lines (65 loc) · 2.28 KB
/
wall.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
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Washago Wall</title>
<link href="js/sail.js/css/sail.css" rel="stylesheet" type="text/css" />
<link href="css/wall.css" rel="stylesheet" type="text/css" />
<script src="js/sail.js/sail.js" type="text/javascript"></script>
</head>
<body>
<div id="wall">
<div class="toolbars-left">
<div id="tags-filter" class="widget-box toolbar">
<h3 class="titlebar">Tags</h3>
<div class="none-yet">(None yet...)</div>
<div class="filter-list-container">
<ul>
</ul>
</div>
</div>
<!--<div id="author-filter" class="widget-box toolbar">
<h3 class="titlebar">Participants</h3>
<div class="none-yet">(None yet...)</div>
<div class="filter-list-container">
<ul>
</ul>
</div>
</div>-->
</div>
<div class="toolbars-right">
<div id="discourse-filter" class="widget-box toolbar">
<h3 class="titlebar">Type</h3>
<div class="none-yet">(None yet...)</div>
<div class="filter-list-container">
<ul>
</ul>
</div>
</div>
<div id="about-filter" class="widget-box toolbar">
<h3 class="titlebar">About</h3>
<div class="none-yet">(None yet...)</div>
<div class="filter-list-container">
<ul>
</ul>
</div>
</div>
</div>
</div>
<div class="toolbars-bottom">
<div class="widget-box">
<a id="cloudify" href="#">Cloudify</a>
</div>
</div>
<footer>
</footer>
<script type="text/javascript">
Sail.load()
.then('js/sail.js/deps/backbone-0.9.2.js')
.then('js/washago.wall.js')
.then('js/washago.model.js', 'js/washago.wall.view.js')
.then('https://raw.github.com/mbostock/d3/master/d3.v2.js',
'js/washago.wall.graph.js')
.thenRun(function() { return Sail.init(Washago.Wall); });
</script>
</body>
</html>