| 1 |
<?php // $Id: node.tpl.php,v 1.4 2008/12/06 13:35:35 jmburnz Exp $
|
| 2 |
/**
|
| 3 |
* @file
|
| 4 |
* node.tpl.php
|
| 5 |
*
|
| 6 |
* Theme implementation to display a node.
|
| 7 |
*
|
| 8 |
* @see template_preprocess()
|
| 9 |
* @see template_preprocess_node()
|
| 10 |
*/
|
| 11 |
?>
|
| 12 |
<div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>">
|
| 13 |
<div class="node-inner-0"><div class="node-inner-1">
|
| 14 |
<div class="node-inner-2"><div class="node-inner-3">
|
| 15 |
|
| 16 |
<?php if ($page == 0): ?>
|
| 17 |
<h2 class="title"><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
|
| 18 |
<?php endif; ?>
|
| 19 |
|
| 20 |
<?php if ($unpublished): ?>
|
| 21 |
<div class="unpublished"><?php print t('Unpublished'); ?></div>
|
| 22 |
<?php endif; ?>
|
| 23 |
|
| 24 |
<?php print $picture; ?>
|
| 25 |
|
| 26 |
<?php if (!empty($submitted)): ?>
|
| 27 |
<div class="submitted"><?php print $submitted; ?></div>
|
| 28 |
<?php endif; ?>
|
| 29 |
|
| 30 |
<?php if ($terms): ?>
|
| 31 |
<div class="taxonomy"><?php print t('Posted in ') . $terms; ?></div>
|
| 32 |
<?php endif; ?>
|
| 33 |
|
| 34 |
<div class="content clearfix">
|
| 35 |
<?php print $content; ?>
|
| 36 |
</div>
|
| 37 |
|
| 38 |
<?php if ($links): ?>
|
| 39 |
<div class="actions clearfix"><?php print $links; ?></div>
|
| 40 |
<?php endif; ?>
|
| 41 |
|
| 42 |
</div></div>
|
| 43 |
</div></div>
|
| 44 |
</div> <!-- /node -->
|