Parent Directory
|
Revision Log
|
Revision Graph
Validation corrections (total validator) and formatting corrections.
| 1 | <div id="node-<?php print $node->nid; ?>" class="clear node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>"> |
| 2 | <?php print $picture ?> |
| 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 | <?php if ($submitted): ?> |
| 7 | <div class="submitted"><?php print $submitted; ?></div> |
| 8 | <?php endif; ?> |
| 9 | <div class="content"> |
| 10 | <?php print $content ?> |
| 11 | </div> |
| 12 | <?php if ($links||$taxonomy){ ?> |
| 13 | <div class="meta clear"> |
| 14 | <?php if ($links): ?> |
| 15 | <div class="links"> |
| 16 | <?php print $links; ?> |
| 17 | </div> |
| 18 | <?php endif; ?> |
| 19 | <?php if ($taxonomy): ?> |
| 20 | <div class="terms"> |
| 21 | <?php print $terms ?> |
| 22 | </div> |
| 23 | <?php endif;?> |
| 24 | </div> |
| 25 | <?php }?> |
| 26 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |