Parent Directory
|
Revision Log
|
Revision Graph
initial commit of the Acquia Marina theme
| 1 | <?php |
| 2 | // $Id$ |
| 3 | ?> |
| 4 | |
| 5 | <!-- start node.tpl.php --> |
| 6 | <div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>"> |
| 7 | <?php print $picture ?> |
| 8 | |
| 9 | <?php if ($page == 0): ?> |
| 10 | <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2> |
| 11 | <?php endif; ?> |
| 12 | |
| 13 | <div class="meta"> |
| 14 | <?php if ($submitted): ?> |
| 15 | <span class="submitted"><?php print $submitted ?></span> |
| 16 | <?php endif; ?> |
| 17 | </div> |
| 18 | |
| 19 | <div class="content"> |
| 20 | <?php print $content ?> |
| 21 | </div> |
| 22 | |
| 23 | <?php if ($terms): ?> |
| 24 | <div class="terms"> |
| 25 | <?php print $terms; ?> |
| 26 | </div> |
| 27 | <?php endif;?> |
| 28 | |
| 29 | <?php if ($links): ?> |
| 30 | <div class="links"> |
| 31 | <?php print $links; ?> |
| 32 | </div> |
| 33 | <?php endif; ?> |
| 34 | |
| 35 | <?php if ($node_bottom && !$teaser): ?> |
| 36 | <div id="node-bottom"> |
| 37 | <?php print $node_bottom; ?> |
| 38 | </div> |
| 39 | <?php endif; ?> |
| 40 | </div> |
| 41 | <!-- /#node-<?php print $node->nid; ?> --> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |