1 |
87dbc3bf
|
Benjamin Luce
|
<?php
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
|
|
?>
|
10 |
|
|
<article class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
|
11 |
|
|
|
12 |
|
|
<header>
|
13 |
|
|
<p class="submitted">
|
14 |
|
|
<?php print $picture; ?>
|
15 |
|
|
<?php print $submitted; ?>
|
16 |
|
|
<?php print $permalink; ?>
|
17 |
|
|
</p>
|
18 |
|
|
|
19 |
|
|
<?php print render($title_prefix); ?>
|
20 |
|
|
<?php if ($title): ?>
|
21 |
|
|
<h3<?php print $title_attributes; ?>>
|
22 |
|
|
<?php print $title; ?>
|
23 |
|
|
<?php if ($new): ?>
|
24 |
|
|
<mark class="new"><?php print $new; ?></mark>
|
25 |
|
|
<?php endif; ?>
|
26 |
|
|
</h3>
|
27 |
|
|
<?php elseif ($new): ?>
|
28 |
|
|
<mark class="new"><?php print $new; ?></mark>
|
29 |
|
|
<?php endif; ?>
|
30 |
|
|
<?php print render($title_suffix); ?>
|
31 |
|
|
|
32 |
|
|
<?php if ($status == 'comment-unpublished'): ?>
|
33 |
|
|
<mark class="unpublished"><?php print t('Unpublished'); ?></mark>
|
34 |
|
|
<?php endif; ?>
|
35 |
|
|
</header>
|
36 |
|
|
|
37 |
|
|
<?php
|
38 |
|
|
|
39 |
|
|
hide($content['links']);
|
40 |
|
|
print render($content);
|
41 |
|
|
?>
|
42 |
|
|
|
43 |
|
|
<?php if ($signature): ?>
|
44 |
|
|
<footer class="user-signature clearfix">
|
45 |
|
|
<?php print $signature; ?>
|
46 |
|
|
</footer>
|
47 |
|
|
<?php endif; ?>
|
48 |
|
|
|
49 |
|
|
<?php print render($content['links']) ?>
|
50 |
|
|
</article> |