| 1 |
<?php
|
| 2 |
// $Id: node.tpl.php,v 1.1 2008/04/26 01:55:30 ceejayoz Exp $
|
| 3 |
?>
|
| 4 |
<div id="node-<?php print $node->nid; ?>" class="entry hentry<?php print $sticky ? ' sticky' : ''; ?><?php print !$status ? ' node-unpublished' : ''; ?>">
|
| 5 |
<div class="meta">
|
| 6 |
<?php if ($page == 0): ?>
|
| 7 |
<h2 class="title entry-title"><a href="<?php print $node_url; ?>" rel="bookmark" title="Permanent link to <?php print check_plain($title); ?>"><?php print $title; ?></a></h2>
|
| 8 |
<?php endif; ?>
|
| 9 |
|
| 10 |
<?php if ($submitted): ?>
|
| 11 |
<p class="metadata"><?php print $submitted; ?></p>
|
| 12 |
<?php endif; ?>
|
| 13 |
</div>
|
| 14 |
|
| 15 |
<div class="content entry-content">
|
| 16 |
<?php print $content; ?>
|
| 17 |
</div>
|
| 18 |
|
| 19 |
<?php if ($terms): ?>
|
| 20 |
<p class="tagdata"><strong>Tags:</strong> <?php print $terms; ?></p>
|
| 21 |
<?php endif; ?>
|
| 22 |
|
| 23 |
<?php if ($links): ?>
|
| 24 |
<p class="links"><?php print $links; ?></p>
|
| 25 |
<?php endif; ?>
|
| 26 |
</div>
|