1
|
<?php
|
2
|
|
3
|
?>
|
4
|
<div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
|
5
|
<?php print $picture ?>
|
6
|
|
7
|
<?php if ($new): ?>
|
8
|
<span class="new"><?php print $new ?></span>
|
9
|
<?php endif; ?>
|
10
|
|
11
|
<?php print render($title_prefix); ?>
|
12
|
<h3<?php print $title_attributes; ?> class="title"><?php print $title ?></h3>
|
13
|
<?php print render($title_suffix); ?>
|
14
|
|
15
|
<div class="submitted">
|
16
|
<?php print $permalink; ?>
|
17
|
<?php
|
18
|
print t('Submitted by !username on !datetime.',
|
19
|
array('!username' => $author, '!datetime' => $created));
|
20
|
?>
|
21
|
</div>
|
22
|
|
23
|
<div class="content"<?php print $content_attributes; ?>>
|
24
|
<?php
|
25
|
hide($content['links']);
|
26
|
print render($content);
|
27
|
?>
|
28
|
<?php if ($signature): ?>
|
29
|
<div class="user-signature clearfix">
|
30
|
<?php print $signature ?>
|
31
|
</div>
|
32
|
<?php endif; ?>
|
33
|
</div>
|
34
|
|
35
|
<?php print render($content['links']) ?>
|
36
|
</div>
|