2007-08-07 08:39:36 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
?>
|
2009-09-11 06:48:03 +00:00
|
|
|
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2009-08-06 05:06:00 +00:00
|
|
|
<?php print $user_picture; ?>
|
|
|
|
|
|
|
|
<?php if (!$page): ?>
|
2009-09-11 06:48:03 +00:00
|
|
|
<h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
|
2009-08-06 05:06:00 +00:00
|
|
|
<?php endif; ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2009-08-29 04:16:15 +00:00
|
|
|
<?php if ($display_submitted): ?>
|
|
|
|
<span class="submitted"><?php print $date; ?> — <?php print $name; ?></span>
|
2006-10-29 13:21:46 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2009-02-18 14:28:25 +00:00
|
|
|
<div class="content clearfix">
|
2009-08-06 05:06:00 +00:00
|
|
|
<?php
|
|
|
|
// We hide the comments and links now so that we can render them later.
|
|
|
|
hide($content['comments']);
|
|
|
|
hide($content['links']);
|
|
|
|
print render($content);
|
|
|
|
?>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|
|
|
|
|
2009-02-18 14:28:25 +00:00
|
|
|
<div class="clearfix">
|
2009-06-18 21:19:02 +00:00
|
|
|
<?php if (!empty($content['links']['terms'])): ?>
|
2009-08-06 05:06:00 +00:00
|
|
|
<div class="meta">
|
|
|
|
<div class="terms"><?php print render($content['links']['terms']); ?></div>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2009-06-18 21:19:02 +00:00
|
|
|
<?php if (!empty($content['links'])): ?>
|
2009-08-06 05:06:00 +00:00
|
|
|
<div class="links"><?php print render($content['links']); ?></div>
|
2006-10-29 13:21:46 +00:00
|
|
|
<?php endif; ?>
|
2009-01-26 14:08:44 +00:00
|
|
|
|
2009-07-13 21:09:54 +00:00
|
|
|
<?php print render($content['comments']); ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|
|
|
|
|
2007-07-01 23:15:41 +00:00
|
|
|
</div>
|