Parent Directory
|
Revision Log
|
Revision Graph
Updating HEAD for 7.x compatibility
| 1 | <?php // $Id: node.tpl.php,v 1.1.2.2.2.1 2009/02/16 09:56:32 njt1982 Exp $ ?> |
| 2 | <div id="node-<?php print $node->nid; ?>" class="node<?php print $sticky ? ' sticky' : ''; print !$status ? ' node-unpublished' : ''; ?> clear-block"> |
| 3 | <?php print $picture ?> |
| 4 | <?php if ($page == 0): ?> |
| 5 | <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2> |
| 6 | <?php endif; ?> |
| 7 | |
| 8 | <div class="meta"> |
| 9 | <?php if ($submitted): ?> |
| 10 | <span class="submitted"><?php print $submitted ?></span> |
| 11 | <?php endif; ?> |
| 12 | |
| 13 | <?php if ($terms): ?> |
| 14 | <div class="terms"><?php print $terms ?></div> |
| 15 | <?php endif;?> |
| 16 | </div> |
| 17 | |
| 18 | <div class="content"> |
| 19 | <?php print $content ?> |
| 20 | </div> |
| 21 | |
| 22 | <?php if ($links): print $links; endif; ?> |
| 23 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |