1
|
<article class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
|
2
|
|
3
|
<?php print $unpublished; ?>
|
4
|
|
5
|
<?php print render($title_prefix); ?>
|
6
|
|
7
|
<header<?php print $header_attributes; ?>>
|
8
|
|
9
|
<?php print $picture; ?>
|
10
|
|
11
|
<?php if ($title): ?>
|
12
|
<h3<?php print $title_attributes; ?>><?php print $title ?></h3>
|
13
|
<?php endif; ?>
|
14
|
|
15
|
<?php if ($new): ?>
|
16
|
<em class="new"><?php print $new ?></em>
|
17
|
<?php endif; ?>
|
18
|
|
19
|
<p class="submitted"><?php print $submitted; ?></p>
|
20
|
|
21
|
</header>
|
22
|
|
23
|
<?php print render($title_suffix); ?>
|
24
|
|
25
|
<div<?php print $content_attributes; ?>>
|
26
|
<?php
|
27
|
hide($content['links']);
|
28
|
print render($content);
|
29
|
?>
|
30
|
|
31
|
<?php if ($signature): ?>
|
32
|
<aside class="user-signature clearfix">
|
33
|
<?php print $signature; ?>
|
34
|
</aside>
|
35
|
<?php endif; ?>
|
36
|
|
37
|
</div>
|
38
|
|
39
|
<?php if ($links = render($content['links'])): ?>
|
40
|
<nav<?php print $links_attributes; ?>><?php print $links; ?></nav>
|
41
|
<?php endif; ?>
|
42
|
|
43
|
</article>
|