-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/stylesheet.css" rel="stylesheet" media="screen">
<script src="jquery.js"></script>
<script src="data_generator.js"></script>
<script src="main.js"></script>
<script src="moment.min.js"></script>
<script src="livestamp.min.js"></script>
</head>
<body>
<main class="container">
<nav class="navbar navbar-inverse"><h2 class="home">Twittler</h2>
</nav>
<aside id="navWindow" class="panel panel-success">
<header class="panel-heading">
<h2 class="panel-title">
Currently Viewing
</h2>
</header>
<section id="infoBox" class="panel-body">
<h4 class="navInfo">
All tweets
</h4>
</section>
</aside>
<section id="feed">
<section id="tweetbox-all" class="panel panel-info tweet">
</section>
<section id="tweetbox-user" class="panel panel-info tweet">
</section>
</section>
</main>
</body>
</html>