Current Directory: /home/astoriaah/www/old15/media/widgetkit/widgets/twitter/styles/bubbles
Viewing File: /home/astoriaah/www/old15/media/widgetkit/widgets/twitter/styles/bubbles/template.php
<section class="wk-twitter wk-twitter-bubbles clearfix">
<?php foreach ($tweets as $tweet) : ?>
<article class="<?php echo 'width'.intval(100 / count($tweets)); ?>">
<p class="content"><?php echo $tweet->getText(); ?></p>
<?php if ($show_author || $show_date) : ?>
<p class="meta">
<?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; ?>
<?php if ($show_author) : ?>
<span class="author"><a href="<?php echo $tweet->getLink(); ?>"><?php echo $tweet->name; ?></a></span>
<?php endif; ?>
<?php if ($show_date) : ?>
<a class="statuslink" href="<?php echo $tweet->getStatusLink(); ?>">
<time data-test="2" datetime="<?php echo date(DATE_W3C, strtotime($tweet->created_at)); ?>" pubdate></time>
</a>
<?php endif; ?>
</p>
<?php endif; ?>
</article>
<?php endforeach; ?>
</section>