Parent Directory
|
Revision Log
|
Revision Graph
update to drupal six, thanks to grndlvl (http://drupal.org/user/103553)
| 1 | <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block"> |
| 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 | <div class="meta"> |
| 7 | <?php if ($submitted): ?> |
| 8 | <span class="submitted"> |
| 9 | <?php print 'Published ' . format_date($node->created, 'custom', 'F j, Y, g:i a') . ' | ' . 'by ' . theme('username', $node); ?> |
| 10 | </span> |
| 11 | <?php endif; ?> |
| 12 | <div class="content"> |
| 13 | <?php print $content ?> |
| 14 | </div> |
| 15 | <?php if ($terms): ?> |
| 16 | <div id="tax"> |
| 17 | <span class="terms"><div class="filed">Categories: </div><?php print $terms ?></span> |
| 18 | </div> |
| 19 | <?php endif;?> |
| 20 | </div> |
| 21 | <div id="links"> |
| 22 | <?php |
| 23 | if ($links) { |
| 24 | print $links; |
| 25 | } |
| 26 | ?> |
| 27 | </div> |
| 28 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |