web/wp-content/plugins/twitter-tools/views/tweet-list.php
changeset 194 32102edaa81b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/twitter-tools/views/tweet-list.php	Mon Nov 19 18:26:13 2012 +0100
@@ -0,0 +1,18 @@
+<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>