Parent Directory
|
Revision Log
|
Revision Graph
fix nesting of block elements
| 1 | <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block"> |
| 2 | |
| 3 | <?php if ($page == 0): ?> |
| 4 | <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2> |
| 5 | <?php endif; ?> |
| 6 | |
| 7 | <?php if ($submitted || $terms): ?> |
| 8 | <div class="meta"> |
| 9 | <?php if ($submitted): ?> |
| 10 | <div class="submitted"><?php print $submitted ?></div> |
| 11 | <?php endif; ?> |
| 12 | |
| 13 | <?php if ($terms): ?> |
| 14 | <div class="terms"><?php print $terms ?></div> |
| 15 | <?php endif;?> |
| 16 | </div> |
| 17 | <?php endif; ?> |
| 18 | |
| 19 | <div class="content clear-block"> |
| 20 | <?php print $picture ?> |
| 21 | <?php print $content ?> |
| 22 | </div> |
| 23 | |
| 24 | <?php |
| 25 | if ($links) { |
| 26 | print '<div class="node-links">'. $links .'</div>'; |
| 27 | } |
| 28 | ?> |
| 29 | |
| 30 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |