web/wp-content/plugins/social/views/comment/social_item.php
changeset 196 5e8dcbe22c24
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/social/views/comment/social_item.php	Tue Dec 04 18:43:10 2012 -0800
@@ -0,0 +1,16 @@
+<div class="social-items social-<?php echo $service->key(); ?>">
+	<div class="social-items-icon"></div>
+	<div class="social-items-comments">
+		<?php
+			$i = 0;
+			foreach ($items as $item) {
+				echo $service->social_item_output($item, $i, (isset($avatar_size) ? $avatar_size : array()));
+				++$i;
+			}
+
+			if ($i > 10) {
+				printf(__('<a href="%s" class="social-items-and-more">... and %s more</a>', 'social'), '#', ($i - 10));
+			}
+		?>
+	</div>
+</div>