node.tpl.php 948 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * admin: A very limited theme with almost no features, to maximize screen real estate
  4. *
  5. * @version $Id: node.tpl.php,v 1.1 2007-08-20 19:43:07 marand Exp $
  6. * @copyright 2006-2007 OSI
  7. * @license CeCILL 2.0
  8. */
  9. ?><div style="background-color: <?php print variable_get('admin_background', 'transparent'); ?> ! important" class="node<?php print ($sticky) ? " sticky" : ""; ?>">
  10. <?php if ($page == 0): ?>
  11. <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  12. <?php endif; ?>
  13. <?php print $picture ?>
  14. <div class="info"><?php print $submitted ?></div>
  15. <div class="content">
  16. <?php print $content ?>
  17. </div>
  18. <?php if ($links): ?>
  19. <?php if ($picture): ?>
  20. <br class='clear' />
  21. <?php endif; ?>
  22. <div class="links"><?php print $links ?></div>
  23. <?php endif; ?>
  24. <?php if ($terms): ?>
  25. <div class="terms">( categories: <?php print $terms ?> )</div>
  26. <?php endif; ?>
  27. </div>