web/wp-content/plugins/twitter-tools/views/tweet-list.php
changeset 194 32102edaa81b
equal deleted inserted replaced
193:2f6f6f7551ca 194:32102edaa81b
       
     1 <div class="aktt_tweets">
       
     2 	<ul>
       
     3 <?php
       
     4 if (count($tweets) > 0) {
       
     5 	foreach ($tweets as $tweet) {
       
     6 		echo '		<li>'."\n";
       
     7 		include(AKTT_PATH.'/views/tweet.php');
       
     8 		echo '</li>'."\n";
       
     9 	}
       
    10 }
       
    11 else {
       
    12 ?>
       
    13 		<li><?php _e('No tweets available at the moment.', 'twitter-tools'); ?></li>
       
    14 <?php
       
    15 }
       
    16 ?>
       
    17 	</ul>
       
    18 </div>