-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Twitter Isotop wall</title>
<!-- JS -->
<script src="scripts/ICanHaz.min.js"></script>
<script src="scripts/moment.min.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.isotope.min.js"></script>
<script src="jquery.twitisowall.js"></script>
<!-- CSS -->
<link href="styles/isotop.css" type="text/css" rel="stylesheet">
<link href="styles/twitisowall.css" type="text/css" rel="stylesheet">
<!-- templates -->
<script id="tweet" type="text/html">
{{#results}}
<div class="item" data-created-at="{{created_at}}" data-added-at="{{added_at}}">
<span class="author_name"><a href="https://twitter.com/#!/{{from_user}}">{{from_user_name}}</a></span> <span class="author_login">@{{from_user}}</span> <span class="create_from">{{created_from}}</span>
<p><img src="{{profile_image_url_https}}" alt="{{from_user}}" />
{{{text}}}</p>
{{#image_url}}
<div class="attached_media">
<img class="media" src="{{.}}" />
</div>
{{/image_url}}
</div>
{{/results}}
</script>
<script id="toolbar" type="text/html">
<div class="twitisotoolbar">
<img class="imageDeleteTools" src="images/trash.png" alt="remove the complete tools bar" />
<input class="searchInput" type="text" name="search" />
</div>
</script>
</head>
<body>
<div id="container"></div>
</body>
</html>