web/wp-content/plugins/twitter-tools/views/tweet-list.php
author Anthony Ly <anthonyly.com@gmail.com>
Tue, 12 Mar 2013 18:21:39 +0100
changeset 206 919b4ddb13fa
parent 194 32102edaa81b
permissions -rw-r--r--
modification logo footer cccb

<div class="aktt_tweets">
	<ul>
<?php
if (count($tweets) > 0) {
	foreach ($tweets as $tweet) {
		echo '		<li>'."\n";
		include(AKTT_PATH.'/views/tweet.php');
		echo '</li>'."\n";
	}
}
else {
?>
		<li><?php _e('No tweets available at the moment.', 'twitter-tools'); ?></li>
<?php
}
?>
	</ul>
</div>