-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment.tpl.php
More file actions
46 lines (36 loc) · 1.2 KB
/
comment.tpl.php
File metadata and controls
46 lines (36 loc) · 1.2 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php // $Id: comment.tpl.php,v 1.6 2009/05/04 20:52:54 jmburnz Exp $
/**
* @file
* comment.tpl.php
*
* Theme implementation for comments.
*
* @see template_preprocess_comment()
* @see theme_comment()
*/
?>
<div class="comment <?php print $comment_classes; ?>">
<div class="comment-inner-0"><div class="comment-inner-1">
<div class="comment-inner-2"><div class="comment-inner-3">
<?php if ($title): ?>
<h3 class="title"><?php print $title; if (!empty($new)): ?> <span class="new"><?php print $new; ?></span><?php endif; ?></h3>
<?php endif; ?>
<?php if ($unpublished): ?>
<div class="unpublished"><?php print t('Unpublished'); ?></div>
<?php endif; ?>
<div class="submitted"><?php print $submitted; ?></div>
<?php print $picture; ?>
<div class="content <?php print $picture ? 'with-picture' : 'no-picture' ; ?>">
<?php print $content; ?>
<?php if ($signature): ?>
<div class="user-signature clear">
<?php print $signature ?>
</div>
<?php endif; ?>
</div>
<?php if ($links): ?>
<div class="links clearfix"><?php print $links; ?></div>
<?php endif; ?>
</div></div>
</div></div>
</div> <!-- /comment -->