<a href="?q=node/<?php print $node->vid ?>" title="<?php print check_plain($node->title) ?>"><?php print check_plain($node->title) ?></a>
<br/>
<em class="field field-type-userreference field-field-view-by-user"><?php 
if ($node->last_comment_timestamp>$node->changed) {
  print "Last Comment:".date("jS M, Y",$node->last_comment_timestamp);
} else {
  print "Last Changed:".date("jS M, Y",$node->changed)." by: ".$node->name;
}
if ($node->comment_count > 0) {
  print " "."(".$node->comment_count." Comment";
  if ($node->comment_count!=1) print "s";
  print ", most recent comment by: ".$node->last_comment_name.")";
}
?></em>