forked from emCOMP/crisis-curation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweet.html~
24 lines (24 loc) · 1.36 KB
/
tweet.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
<li class="media tweet tagged">
<a class="pull-left" href="#">
<img class="media-object img-rounded" src={{tweet.profilePic}} alt="...">
</a>
<div class="media-body">
<span class="fullname"><a href="#"><strong>{{tweet.fullName}}</strong></a></span>
<span class="username text-muted"><small>{{tweet.username}}</small></span>
<span class="timestamp text-muted pull-right"><small>{{tweet.timeStamp}}s</small></span>
<p class="tweet-text">{{tweet.tweetText}}</p>
<span class="help-block">
<span class="pull-left tweet-info">
<a href="#" class="text-muted"><small>{{tweet.reTweets}}</small> <i class="icon-retweet"></i></a>
<a href="#" class="text-muted"><small>{{tweet.favorites}}</small> <i class="icon-star"></i></a>
</span>
<span class="pull-right tweet-actions">
<span class="tags">
<i class="icon-circle text-danger" data-toggle="tooltip" title="Caution or Advice"></i>
<i class="icon-circle text-warning" data-toggle="tooltip" title="Casualities or Injuries"></i>
</span>
<a href="#" class="text-muted"><i class="icon-tags"></i><small>Re-tag (@robot)</small></a>
</span>
</span>
</div>
</li>