-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 2.82 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
<!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">
<!--Online scripts-->
<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-->
<!--Local scripts-->
<script type="text/javascript" src="js/get_saved_tweets.js"></script><!--Local runkeeper_tweets file, which will load all of the tweets into the variable RUNKEEPER_TWEETS-->
<script type="text/javascript" src="js/tweet.js"></script><!--Load local tweet.js file, which was generated from TypeScript-->
<script type="text/javascript" src="js/about.js"></script>
<!--Stylesheets-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"><!--bootstrap stylesheet-->
<link rel="stylesheet" href="css/style.css"><!--local stylesheet-->
<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 active">
<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">
<a href="descriptions.html" class="nav-link">
What people are saying
</a>
</li>
</ul>
</nav>
<main>
<h1>About the data</h1>
<p>There were <span id="numberTweets">???</span> English Tweets with the Hashtag <em>#RunKeeper</em> between <span id="firstDate">January 1st, 2000</span> and <span id="lastDate">January 1st, 2000</span>.</p>
<p>Completed Events: <span class="completedEvents">???</span> (<span class="completedEventsPct">?.??%</span>)</p>
<p>Live Events: <span class="liveEvents">???</span> tweets (<span class="liveEventsPct">?.??%</span>)</p>
<p>Achievements: <span class="achievements">???</span> tweets (<span class="achievementsPct">?.??%</span>)</p>
<p>Miscellaneous: <span class="miscellaneous">???</span> tweets (<span class="miscellaneousPct">?.??%</span>)</p>
<p>Of the <span class="completedEvents">???</span> of Tweets of completed events, <span class="written">???</span> (<span class="writtenPct">?.??%</span>) included user-written text.</p>
</main>
</body>
</html>