You are here

page--node--lightbox2.tpl.php in Lightbox2 7.2

Same filename and directory in other branches
  1. 8 page--node--lightbox2.tpl.php
  2. 7 page--node--lightbox2.tpl.php

Template file for displaying the node content, associated with an image, in the lightbox. It displays it without any sidebars, etc.

File

page--node--lightbox2.tpl.php
View source
<?php

/**
 * @file
 * Template file for displaying the node content, associated with an image, in
 * the lightbox.  It displays it without any sidebars, etc.
 */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml"
        xml:lang="<?php

print $language->language;
?>"
        lang="<?php

print $language->language;
?>"
        dir="<?php

print $language->dir;
?>">
  <head>
    <title><?php

print $head_title;
?></title>
    <?php

print $head;
?>
    <?php

print $styles;
?>
    <?php

print $scripts;
?>
    <!--[if lt IE 7]>
    <?php

print phptemplate_get_ie_styles();
?>
    <![endif]-->
  </head>
  <body>
    <div id="wrapper">
      <div id="container" class="clear-block">
        <div id="center">
          <div id="squeeze">
            <div class="right-corner">
              <div class="left-corner">
                <?php

phptemplate_comment_wrapper(NULL, $node->type);
?>
                    <?php

if ($page == 0) {
  ?>
                  <h2>
                    <a href="<?php

  print $node_url;
  ?>" title="<?php

  print $title;
  ?>">
                      <?php

  print $title;
  ?>
                    </a>
                  </h2>
                <?php

}
?>
                <?php

print $content;
?>
                <div class="clear-block clear">
                  <div class="meta">
                    <?php

if ($taxonomy) {
  ?>
                      <div class="terms"><?php

  print $terms;
  ?></div>
                    <?php

}
?>
                  </div>
                  <?php

if ($links) {
  ?>
                    <div class="links"><?php

  print $links;
  ?></div>
                  <?php

}
?>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>