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