1
|
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>">
|
2
|
<?php if($display_submitted && !$page): ?>
|
3
|
<div class="date">
|
4
|
<div class="textdate">
|
5
|
<div class="day"><?php print format_date($created, 'custom', 'j'); ?></div>
|
6
|
<div class="month"><?php print format_date($created, 'custom', 'M'); ?></div>
|
7
|
</div>
|
8
|
</div>
|
9
|
<?php endif; ?>
|
10
|
<?php print $user_picture; ?>
|
11
|
|
12
|
<?php print render($title_prefix); ?>
|
13
|
<?php if (!$page): ?>
|
14
|
<h2 class="title"<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
|
15
|
<?php endif; ?>
|
16
|
<?php print render($title_suffix); ?>
|
17
|
|
18
|
<?php if ($display_submitted): ?>
|
19
|
<span class="submitted"><?php print t('Submitted by !username on !datetime', array('!username' => $name, '!datetime' => $date)); ?></span>
|
20
|
<?php endif; ?>
|
21
|
<div class="content clearfix"<?php print $content_attributes; ?>>
|
22
|
<?php
|
23
|
hide($content['comments']);
|
24
|
hide($content['links']);
|
25
|
print render($content);
|
26
|
?>
|
27
|
</div>
|
28
|
<?php if($content['links']): ?><div class="node-links"><?php print render($content['links']); ?></div><?php endif; ?>
|
29
|
</div>
|
30
|
<?php print render($content['comments']); ?>
|