-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 806 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 806 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Montserrat|Cabin' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<!-- Thanks Andreas! -->
<title>Timeline</title>
</head>
<body>
<script id='tweetTmpl' type='text/html'>
<div class='tweet'>
<div class='tweetOverlay'></div>
<div class='icon'><img src=':icon' /></div>
<div class='tweetContent'>
<div class='name'>:name</div>
<div class='text'>:text</div>
</div>
</div>
</script>
<div class='feedOverlay'></div>
<div class='output'></div>
<script src="vendor/jsOAuth-1.1.min.js"></script>
<script src="js/background.js"></script>
</body>
</html>