forked from emCOMP/crisis-curation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (44 loc) · 1.62 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
63
64
65
66
<!DOCTYPE html>
<html lang="en" ng-app="twitterCrisis">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.png">
<title>Crisis Curation</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<!-- Javascript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/angular.min.js"></script>
<!-- Custom JavaScript -->
<script src="js/tweets.js"></script>
<script src="js/action.js"></script>
<script src="js/directives.js"></script>
</head>
<body>
<div class="container">
<left-menu></left-menu>
<column-stream></column-stream>
<column-stream></column-stream>
<div class="col-md-2">
</div> <!-- right column -->
</div> <!-- /container -->
<!-- -----------------------------------------------------------------
To do:
* fix tweet stream scroll bug
* need to make it responsive
* tag list still not yet scrollable
* add dropdown to "tag tweet" with tag list
* add "move tweet" to tag list in the sidebar (drag and drop)
* add dynamic badge number for tag list
* figure out "tagged" style
* add keyboard shortcut for focused tweet
------------------------------------------------------------------- -->
</body>
</html>