-
Notifications
You must be signed in to change notification settings - Fork 1
/
comment.tpl.php
32 lines (28 loc) · 937 Bytes
/
comment.tpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
// $Id: comment.tpl.php,v 1.10 2008/01/04 19:24:24 goba Exp $
?>
<div class="comment<?php print ($comment->new) ? ' comment-new' : '';
print ' ' . $status;
print ' ' . $zebra; ?>">
<div class="commenthead">
<?php print $picture; ?>
<p class="commentuser"><?php print $author; ?></p>
<p class="commentdate">
<?php print $date; ?>
<?php if ($comment->new) : print '(' . drupal_ucfirst($new) . ')';
endif; ?>
</p>
<br class="clear" />
</div>
<div class="commentbody">
<?php print $content ?>
<?php if ($signature): ?>
<div class="sign"><?php print $signature ?></div>
<?php endif; ?>
</div>
<?php if ($links): ?>
<div class="commentfoot">
<?php print $links ?><?php print l('permalink','', array( 'fragment' => 'comment-' . $comment->cid, 'external' => TRUE)); ?>
</div>
<?php endif; ?>
</div>