You are here

comment.tpl.php in Drupal for Facebook 6.2

Same filename and directory in other branches
  1. 5.2 themes/fb_fbml/comment.tpl.php
  2. 5 themes/fb_fbml/comment.tpl.php

FBML comment template.

File

themes/fb_fbml/comment.tpl.php
View source
<?php

/**
 * @file
 * FBML comment template.
 */
?>
<div class="comment<?php

print $comment->status == COMMENT_NOT_PUBLISHED ? ' comment-unpublished' : '';
?>">
<div class="comment-header">
<?php

if ($picture) {
  print $picture;
}
?>
<h3 class="title"><?php

print $title;
?></h3>
<?php

if ($new != '') {
  ?>
  <span class="new"><?php

  print $new;
  ?></span>
<?php

}
?>
<div class="submitted"><?php

print $submitted;
?></div>
</div><!-- end comment header -->
<div class="content"><?php

print $content;
?></div>
<div class="footer">
<div class="links"><?php

print $links;
?></div>
</div>
</div>