1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?php
// $Id: slideshow.header.default,v 1.11 2004/07/17 11:35:20 jenst Exp $
// This is the default slideshow header (for the gallery slideshow
// page: slideshow.php). It's companion is slideshow.footer.default.
//
// To override this header, create a file called slideshow.header
// in this directory.
//
// NOTE: This header gets inserted below the <body> tag.
//
// Some tips:
// * Some application variables:
// - Gallery Title: $gallery->app->galleryTitle
//
?>
<?php
includeHtmlWrap("wrapper.header");
global $title;
if(!includeTemplate('slideshow.header.tpl')) {
?>
<table width="100%" border="0">
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" border="0" align="center" class="mod_headliner">
<tr valign="middle">
<td class="leftspacer"></td>
<td>
<table cellspacing="0" cellpadding="0" class="mod_toplight_bg">
<tr>
<td class="mod_toplight_left" align="right"></td>
<td nowrap class="head" align="left"> <?php echo $title ?> </td>
<td class="mod_toplight_right" align="left"></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="mod_under_hl"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top">
<?php
}
?>
|