-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescriptions.html
69 lines (68 loc) · 2.48 KB
/
descriptions.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Your name here">
<meta name="description" content="One week of #RunKeeper Tweets">
<!--Load math.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/10.0.2/math.js" integrity="sha512-U9fwz8ekKht5NdL1x4+Yh3DoXeSrsZ0M7ALcijykvrVKD+101nax1MVdc0wNSVh4GOwZGY7yQpz+rAnnoX7O3Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script><!--math.js-->
<!--Stylesheets-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!--Load local stylesheet-->
<link rel="stylesheet" href="css/style.css">
<!--Load local runkeeper_tweets file, which will load all of the tweets into the variable RUNKEEPER_TWEETS-->
<script type="text/javascript" src="js/get_saved_tweets.js"></script>
<!--Load local tweet.js file, which was generated from TypeScript-->
<script type="text/javascript" src="js/tweet.js"></script>
<!--Load local descriptions.js file-->
<script type="text/javascript" src="js/descriptions.js"></script>
<title>One week of #RunKeeper Tweets</title>
</head>
<body class="container">
<nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-primary">
<ul class="navbar-nav mr-auto">
<li class="nav-item navbar-brand">
<span class="navbar-brand">
One week of #RunKeeper Tweets
</span>
</li>
<li class="nav-item">
<a href="index.html" class="nav-link">
About the data
</a>
</li>
<li class="nav-item">
<a href="activities.html" class="nav-link">
A wide range of activities
</a>
</li>
<li class="nav-item active">
<a href="descriptions.html" class="nav-link">
What people are saying
</a>
</li>
</ul>
</nav>
<main>
<h1>What people are saying</h1>
<p>
What text are you interested in looking for?
<input id="textFilter" type="text">
</p>
<p>
<span id="searchCount">???</span> Tweets contain the text '<span id="searchText">???</span>'.
</p>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Activity type</th>
<th scope="col">Tweet</th>
</tr>
</thead>
<tbody id="tweetTable">
</tbody>
</table>
</main>
</body>
</html>