forked from encorelab/common-knowledge-smartboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Common Knowledge ~ Smartboard</title>
<link href="css/commonboard.css" rel="stylesheet" type="text/css" />
<link href="js/sail.js/css/sail.css" rel="stylesheet" type="text/css" />
<link href="js/sail.js/css/jquery-ui/start/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="js/sail.js/sail.js" type="text/javascript"></script>
<script type="text/javascript">
Sail.load()
.then('js/sail.js/rollcall.js')
.then('js/commonboard.js')
.thenRun(function() {
return Sail.init(CommonBoard)
})
</script>
</head>
<body>
<header>
<h1>WallCology Discussion</h1>
<button id="restore-notes">Restore Notes From Last Weeks</button>
</header>
<div id="board">
</div>
<div id="keywords" class="widget-box">
<h3 class="titlebar">Keywords</h3>
<div class="none-yet">(None yet...)</div>
<ul>
</ul>
</div>
</body>
</html>