-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment.tpl.php
More file actions
executable file
·32 lines (25 loc) · 916 Bytes
/
comment.tpl.php
File metadata and controls
executable file
·32 lines (25 loc) · 916 Bytes
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
<article class="<?php print $classes . ' ' . $zebra; ?>"<?php print $attributes; ?>>
<header>
<?php print $picture ?>
<?php print render($title_prefix); ?>
<h3<?php print $title_attributes; ?>><?php print $title ?></h3>
<?php print render($title_suffix); ?>
<span class="submitted"><?php print $author; ?> - <?php print $created; ?></span>
<?php if ($new): ?>
<span class="new"><?php print $new ?></span>
<?php endif; ?>
</header>
<div class="content"<?php print $content_attributes; ?>>
<?php hide($content['links']); print render($content); ?>
<?php if ($signature): ?>
<div class="user-signature clearfix">
<?php print $signature ?>
</div>
<?php endif; ?>
</div>
<?php if (!empty($content['links'])): ?>
<footer>
<?php print render($content['links']) ?>
</footer>
<?php endif; ?>
</article> <!-- /.comment -->