page--node--lightbox2.tpl.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. // $Id: page-node-lightbox2.tpl.php,v 1.1.2.2 2008/06/11 22:16:38 snpower Exp $
  3. /**
  4. * @file
  5. * Template file for displaying the node content, associated with an image, in
  6. * the lightbox. It displays it without any sidebars, etc.
  7. */
  8. ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  9. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  10. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
  11. <head>
  12. <title><?php print $head_title ?></title>
  13. <?php print $head ?>
  14. <?php print $styles ?>
  15. <?php print $scripts ?>
  16. <!--[if lt IE 7]>
  17. <?php print phptemplate_get_ie_styles(); ?>
  18. <![endif]-->
  19. </head>
  20. <body>
  21. <!-- Layout -->
  22. <div id="wrapper">
  23. <div id="container" class="clear-block">
  24. <div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
  25. <?php phptemplate_comment_wrapper(NULL, $node->type); ?>
  26. <?php if ($page == 0): ?>
  27. <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  28. <?php endif; ?>
  29. <?php print $content ?>
  30. <div class="clear-block clear">
  31. <div class="meta">
  32. <?php if ($taxonomy): ?>
  33. <div class="terms"><?php print $terms ?></div>
  34. <?php endif;?>
  35. </div>
  36. <?php if ($links): ?>
  37. <div class="links"><?php print $links; ?></div>
  38. <?php endif; ?>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div> <!-- close container -->
  45. </div> <!-- close wrapper -->
  46. </body>
  47. </html>