| 1 |
<?php foreach($items as $item): ?> |
<?php foreach($items as $item): ?> |
| 2 |
<div class="author"> |
<div class="author"> |
| 3 |
<?php if(isset($item->picture)): ?> |
<?php if(isset($item->picture)): ?> |
| 4 |
<div class="picture" style="float:left;"><?php print theme('image', $item->picture); ?></div> |
<div class="picture" style="float:left;"><?php print theme('image', $item->picture); ?></div> |
| 5 |
<?php endif; ?> |
<?php endif; ?> |
| 6 |
<!--<div class="name"><?php print l($item->name, "user/$item->uid"); ?></div>--> |
<!--<div class="name"><?php print l($item->name, "user/$item->uid"); ?></div>--> |
| 7 |
<div class="name"><?php print theme('username', $item); ?></div> |
<div class="name"><?php print theme('username', $item); ?></div> |
| 8 |
<div style="clear:both;"></div> |
<div style="clear:both;"></div> |
| 9 |
</div> |
</div> |
| 10 |
<?php endforeach; ?> |
<?php endforeach; ?> |