-
Notifications
You must be signed in to change notification settings - Fork 6
/
favorites.html
30 lines (26 loc) · 1.03 KB
/
favorites.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
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script src="chirp.min.js"></script>
<h1>Showing Your Favorites</h1>
<p>Visit <a href="http://lab.rog.ie/chirp/">Chirp's page</a> for more documentation, if needed</p>
<h2>Show Favorites</h2>
<script>Chirp({
user:'rogie',
favorites: true,
max:5
})</script>
<h2>Show Favorites (with custom templating)</h2>
<script>Chirp({
user:'rogie',
favorites: true,
max:10,
templates: {
base: '<ul class="chirp">{{tweets}}</ul>',
tweet: '<li><p><a href="http://twitter.com/{{user.screen_name}}" title="{{user.name}} — {{user.description}}"><img src="{{user.profile_image_url}}"></a> {{html}}</p><span class="meta"><time><a href="http://twitter.com/{{user.screen_name}}/statuses/{{id_str}}">{{time_ago}}</a></time> — via <a href="http://twitter.com/{{user.screen_name}}" title="{{user.name}} — {{user.description}}">{{user.name}}</a></span></li>'
}
})</script>
</body>
</html>