-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwitfaves.tpl.php
More file actions
23 lines (23 loc) · 1 KB
/
Copy pathtwitfaves.tpl.php
File metadata and controls
23 lines (23 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="item-list">
<ul>
<?php foreach ($tweets as $tweet): ?>
<li>
<div class="image">
<a href="http://twitter.com/<?php print $tweet->screen_name; ?>" title="<?php print t("@name on Twitter", array('@name' => $tweet->screen_name)); ?>">
<img src="<?php print $tweet->image_url; ?>" alt="" title="" />
</a>
</div>
<div class="screenname"><a href="http://twitter.com/<?php print $tweet->screen_name; ?>" title="<?php print t("@name on Twitter", array('@name' => $tweet->screen_name)); ?>"><?php print $tweet->screen_name; ?></a></div>
<div class="tweet">
<span class="field-content"><?php print $tweet->text; ?></span>
</div>
<div class="time-ago">
<span class="field-content"><a href="<?php print $tweet->url ?>" title="Permalink"><?php print format_interval(time() - $tweet->timestamp); ?> ago</a></span>
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
<div class="twitfaves-follow-link">
<?php print $follow_link; ?>
</div>