123456789101112131415161718192021222324252627 |
- <?php
- ?><div style="background-color: <?php print variable_get('admin_background', 'transparent'); ?> ! important" class="node<?php print ($sticky) ? " sticky" : ""; ?>">
- <?php if ($page == 0): ?>
- <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
- <?php endif; ?>
- <?php print $picture ?>
- <div class="info"><?php print $submitted ?></div>
- <div class="content">
- <?php print $content ?>
- </div>
- <?php if ($links): ?>
- <?php if ($picture): ?>
- <br class='clear' />
- <?php endif; ?>
- <div class="links"><?php print $links ?></div>
- <?php endif; ?>
- <?php if ($terms): ?>
- <div class="terms">( categories: <?php print $terms ?> )</div>
- <?php endif; ?>
- </div>
|