comment.tpl.php in Drupal for Facebook 6.2
Same filename and directory in other branches
FBML comment template.
File
themes/fb_fbml/comment.tpl.phpView 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>