-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.06 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>
<meta charset="UTF-8">
<title>Periodic Twitter</title>
<link rel="stylesheet" href="./css/bootstrap.min.css"</link>
<link rel="stylesheet" href="./css/bootstrap-theme.min.css" </link>
<link rel="stylesheet" href="./css/main.css" </link>
</head>
<body id="body">
<h1>Tweets!</h1>
<div class="container container-fluid">
<div class="panel">
<div class="input-group">
<input id="search-box" type="text" class="form-control" placeholder="Enter a term to search">
<span class="input-group-btn">
<button id="search-button" class="btn btn-default" type="button">Search</button>
</span>
</div>
</div>
</div>
<div id="tweets-container" class="container container-fluid"></div>
</body>
<script>
window.jQuery = window.$ = require('./js/jquery-3.1.0.min.js');
</script>
<script src='./js/bootstrap.min.js'></script>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>