-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.php
34 lines (25 loc) · 979 Bytes
/
template.php
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
<section class="wk-twitter wk-twitter-list">
<?php foreach ($tweets as $tweet) :
?>
<article>
<?php if ($show_image) : ?>
<a class="image" href="<?php echo $tweet->getLink(); ?>">
<img src="<?php echo $tweet->image; ?>" width="<?php echo $image_size; ?>" height="<?php echo $image_size; ?>" alt="<?php echo $tweet->name; ?>"/>
</a>
<?php endif; ?>
<p class="content"><?php echo $tweet->html; ?></p>
<?php if ($show_author || $show_date) : ?>
<p class="meta">
<?php if ($show_author) : ?>
<span class="author"><?php printf($this['system']->__('BY_X'), '<a href="'.$tweet->getLink().'">'.$tweet->name.'</a>'); ?></span>
<?php endif; ?>
<?php if ($show_date) : ?>
<a class="statuslink" href="<?php echo $tweet->getStatusLink(); ?>">
<time datetime="<?php echo date(DATE_W3C, strtotime($tweet->created_at)); ?>" pubdate></time>
</a>
<?php endif; ?>
</p>
<?php endif; ?>
</article>
<?php endforeach; ?>
</section>