Trying to get summary in teaser

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